@wdio/devtools-service
v10.2.1
Published
Hook up WebdriverIO with DevTools
Keywords
Readme
@wdio/devtools-service
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.
Installation
Install the service in your project:
npm install @wdio/devtools-service --save-devor with pnpm:
pnpm add -D @wdio/devtools-serviceUsage
WebdriverIO Test Runner
Add the service to your wdio.conf.ts:
export const config = {
// ...
services: ['devtools'],
// ...
}