webdriver-io-capture-it
v4.1.1
Published
An SDK to capture it() block content in WebDriver.IO and log it as Test Case Name.
Downloads
13
Maintainers
Readme
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
- Add the
wdio-capture-it
service to yourwdio.conf.js
file in your WebDriver.IO project:
const WdioCaptureIt = require('webdriver-io-capture-it').default;
exports.config = {
// ...
services: [
[WdioCaptureIt, {}],
// ... other services
],
// ...
};
- 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