4.1.1 • Published 12 months ago

webdriver-io-capture-it v4.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

webdriver-io-capture-it

A WebDriver.IO service that captures the it() block test case names and logs them in the browser console using the browser.execute() function.

Installation

Install the package using npm:

npm install webdriver-io-capture-it

Usage

  1. Add the wdio-capture-it service to your wdio.conf.js file in your WebDriver.IO project:
const WdioCaptureIt = require('webdriver-io-capture-it').default;

exports.config = {
    // ...
    services: [
        [WdioCaptureIt, {}],
        // ... other services
    ],
    // ...
};
  1. Run your WebDriver.IO tests as usual. The test case names from the it() blocks will be captured and logged in the browser console at the beginning of each test.

Example

Here's an example of how the test case name will be logged in the browser console:

Test Case Name: should display the correct title

TypeScript Support

This package includes a TypeScript declaration file to support TypeScript projects. Make sure to install the @wdio/types package to use the types correctly:

npm install @wdio/types

After installing the necessary packages, you can import the WdioCaptureIt service in your TypeScript configuration file:

import WdioCaptureIt from 'webdriver-io-capture-it';

export const config: WebdriverIO.Config = {
    // ...
    services: [
        [WdioCaptureIt, {}],
        // ... other services
    ],
    // ...
};

License

MIT License


4.1.1

12 months ago

4.1.0

1 year ago

4.0.0

1 year ago

3.1.0

1 year ago

3.0.0

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago