Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 593 Bytes

File metadata and controls

32 lines (21 loc) · 593 Bytes

@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-dev

or with pnpm:

pnpm add -D @wdio/devtools-service

Usage

WebdriverIO Test Runner

Add the service to your wdio.conf.ts:

export const config = {
  // ...
  services: ['devtools'],
  // ...
}