DevTools is a UI test runner for WebdriverIO. It provides a user interface for running, debugging, and inspecting your browser automation tests, along with advanced features like network interception, performance tracing, and more.
Install the service in your project:
npm install @wdio/devtools-service --save-devor with pnpm:
pnpm add -D @wdio/devtools-serviceAdd the service to your wdio.conf.ts:
export const config = {
// ...
services: ['devtools'],
// ...
}