wdio-lambdatest-test-case-analytics-service
v2.0.3
Published
An NPM package to capture it() block test case names.
Maintainers
Readme
wdio-lambdatest-test-case-analytics-service
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 wdio-lambdatest-test-case-analytics-serviceUsage
WebdriverIO has support for this service out of the box.
- Add the
lambdatest-test-case-analyticsservice to yourwdio.conf.jsfile in your WebDriver.IO project:
exports.config = {
// ...
services: [
['lambdatest-test-case-analytics', {}],
// ... other services
],
// ...
};Set your LambdaTest account
userandkeyin yourwdio.conf.jsfile.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 titleTypeScript 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