1.0.0 • Published 10 months ago

@lambdatest/test-case-analytics v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

LambdaTest Logo

@lambdatest/test-case-analytics

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 @lambdatest/test-case-analytics

Usage

  1. Add the test-case-analytics service to your wdio.conf.js file in your WebDriver.IO project:
const WdioCaptureIt = require('@lambdatest/test-case-analytics').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 test-case-analytics service in your TypeScript configuration file:

import WdioCaptureIt from '@lambdatest/test-case-analytics';

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