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