agent-js-webdriverio 5.1.0
Install from the command line:
Learn more about npm packages
$ npm install @reportportal/agent-js-webdriverio@5.1.0
Install via package.json:
"@reportportal/agent-js-webdriverio": "5.1.0"
About this version
Agent to integrate Webdriver.io with ReportPortal.
- More about WebDriverIO
- More about ReportPortal
Install the agent in your project:
npm install --save-dev @reportportal/agent-js-webdriverio
Create wdio.conf.js
Testrunner Configuration file:
const { Reporter } = require('@reportportal/agent-js-webdriverio');
const config = {
token: '00000000-0000-0000-0000-00000000000',
endpoint: 'http://your.reportportal.server:8080/api/v1',
project: 'YourReportPortalProjectName',
launch: 'YourLauncherName',
description: 'Static launch description',
attributes: [
{
key: 'key',
value: 'value',
},
{
value: 'value',
},
],
};
exports.config = {
// ...
reporters: [[Reporter, config]],
// ...
};
The full list of available options presented below.
Option | Necessity | Default | Description |
---|---|---|---|
apiKey | Required | User's ReportPortal token from which you want to send requests. It can be found on the profile page of this user. | |
endpoint | Required | URL of your server. For example 'https://server:8080/api/v1'. | |
launch | Required | Name of launch at creation. | |
project | Required | The name of the project in which the launches will be created. | |
attributes | Optional | [] | Launch attributes. |
description | Optional | '' | Launch description. |
rerun | Optional | false | Enable rerun. |
rerunOf | Optional | Not set | UUID of launch you want to rerun. If not specified, ReportPortal will update the latest launch with the same name. |
mode | Optional | 'DEFAULT' | Results will be submitted to Launches page 'DEBUG' - Results will be submitted to Debug page. |
skippedIssue | Optional | true | ReportPortal provides feature to mark skipped tests as not 'To Investigate'. Option could be equal boolean values: true - skipped tests considered as issues and will be marked as 'To Investigate' on ReportPortal. false - skipped tests will not be marked as 'To Investigate' on application. |
debug | Optional | false | This flag allows seeing the logs of the client-javascript. Useful for debugging. |
launchId | Optional | Not set | The ID of an already existing launch. The launch must be in 'IN_PROGRESS' status while the tests are running. Please note that if this ID is provided, the launch will not be finished at the end of the run and must be finished separately. |
restClientConfig | Optional | Not set | The object with agent property for configure http(s) client, may contain other client options eg. timeout . Visit client-javascript for more details. |
launchUuidPrint | Optional | false | Whether to print the current launch UUID. |
launchUuidPrintOutput | Optional | 'STDOUT' | Launch UUID printing output. Possible values: 'STDOUT', 'STDERR'. Works only if launchUuidPrint set to true . |
isLaunchMergeRequired | Optional | false | Allows to merge several run's into one launch at the end of the run. Needs additional setup. See Manual merge launches. |
attachPicturesToLogs | Optional | false | Automatically add screenshots. |
cucumberNestedSteps | Optional | false | Report your steps as logs. |
reportSeleniumCommands | Optional | false | Add selenium logs to each test case. |
seleniumCommandsLogLevel | Optional | 'info' | If set reportSeleniumCommands to true, you need to provide log level witch can be one of: 'trace', 'debug', 'info', 'warn', 'error', 'fatal'. |
token | Deprecated | Not set | Use apiKey instead. |
The following options can be overridden using ENVIRONMENT variables:
Option | ENV variable |
---|---|
launchId | RP_LAUNCH_ID |
By default, this agent reports the following structure:
- feature - SUITE
- scenario - TEST
- step - STEP
You may change this behavior to report steps to the log level by enabling scenario-based reporting:
- feature - TEST
- scenario - STEP
- step - log item (nested step)
To report your steps as logs, you need to pass an additional parameter to the agent config: "cucumberNestedSteps": true
This reporter provides Reporting API to use it directly in tests to send some additional data to the report.
To start using the ReportingApi
in tests, just import it from '@reportportal/agent-js-webdriverio'
:
const { ReportingApi } = require('@reportportal/agent-js-webdriverio');
ReportingApi.addAttributes(attributes: Array<Attribute>, suite?: string);
required: attributes
interface Attribute {
key?: string;
value: string;
}
Examples:
// Jasmine
describe('suite name', () => {
ReportingApi.addAttributes([
{
key: 'suiteKey',
value: 'suiteValue',
},
{
value: 'suiteValue_2',
},
], 'suite name'); // the second parameter must match the name of the suite
it('test with attributes', () => {
ReportingApi.addAttributes([
{
key: 'testKey',
value: 'testValue',
},
{
value: 'testValue_2',
},
]);
expect(true).eql(true);
})
});
Note: Pay attention if you want to provide attributes to the
suite
you should pass describe name as a second parameter.
// Cucumber - adding attributes to the `suite`
@testKey:testValue @testValueTwo
Feature: Test WDIO with cucumber
//...
// Cucumber - adding attributes to the `step`
Given('I do something awesome', () => {
ReportingApi.addAttributes([
{
key: 'stepKey',
value: 'stepValue',
},
{
value: 'stepValue_2',
},
]);
//...
});
Note: Agent is not supported adding attributes to the
scenario
.
ReportingApi.setDescription(description: string, suite?: string);
required: description
Examples:
// Jasmine
describe('suite name', () => {
ReportingApi.setDescription('suite description', 'suite name'); // the second parameter must match the name of the suite
it('test with attributes', () => {
ReportingApi.setDescription('step description');
expect(true).eql(true);
})
});
Note: Pay attention if you want to provide description to the
suite
you should pass describe name as a second parameter.
// Cucumber
Feature: Test WDIO with cucumber
This description will be added to the suite
//...
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setDescription('step description');
//...
});
Note: Agent is not supported adding description to the
scenario
.
ReportingApi.setTestCaseId(testCaseId: string, suite?: string);
required: testCaseId
Examples:
// Jasmine
describe('suite name', () => {
ReportingApi.setTestCaseId('suiteTestCaseId', 'suite name'); // the second parameter must match the name of the suite
it('some test', () => {
ReportingApi.setTestCaseId('testCaseId');
// ...
})
});
Note: Pay attention if you want to provide testCaseId to the
suite
you should pass describe name as a parameter.
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setTestCaseId('testCaseId');
//...
});
Assign corresponding status to the current test item or suite.
ReportingApi.setStatus(status: string, suite?: string);
required: status
where status
must be one of the following: passed, failed, stopped, skipped, interrupted, cancelled, info, warn
Examples:
// Jasmine
describe('should have status FAILED', () => {
ReportingApi.setStatus('failed', 'should have status FAILED'); // the second parameter must match the name of the suite
it('test with INFO status', () => {
ReportingApi.setStatus('info');
// ...
})
});
Note: Pay attention if you want to provide custom status to the
suite
you should pass describe name as a parameter.
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setStatus('info');
//...
});
setStatusFailed, setStatusPassed, setStatusSkipped, setStatusStopped, setStatusInterrupted, setStatusCancelled, setStatusInfo, setStatusWarn
Assign corresponding status to the current test item or suite.
ReportingApi.setStatusFailed(suite?: string);
ReportingApi.setStatusPassed(suite?: string);
ReportingApi.setStatusSkipped(suite?: string);
ReportingApi.setStatusStopped(suite?: string);
ReportingApi.setStatusInterrupted(suite?: string);
ReportingApi.setStatusCancelled(suite?: string);
ReportingApi.setStatusInfo(suite?: string);
ReportingApi.setStatusWarn(suite?: string);
Examples:
// Jasmine
describe('manual statuses assigning', () => {
ReportingApi.setStatusInfo('manual statuses assigning'); // string must match the name of the suite
it('should call ReportingApi to set statuses', () => {
ReportingApi.setStatusInfo();
});
// ...
});
Note: Pay attention if you want to provide custom status to the
suite
you should pass describe name as a parameter.
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setStatusInfo();
//...
});
Assign corresponding status to the current launch.
ReportingApi.setLaunchStatus(status: string);
required: status
where status
must be one of the following: passed, failed, stopped, skipped, interrupted, cancelled, info, warn
Examples:
// Jasmine
it('launch should have status FAILED', () => {
ReportingApi.setLaunchStatus('failed');
// ...
});
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setLaunchStatus('failed');
//...
});
setLaunchStatusFailed, setLaunchStatusPassed, setLaunchStatusSkipped, setLaunchStatusStopped, setLaunchStatusInterrupted, setLaunchStatusCancelled, setLaunchStatusInfo, setLaunchStatusWarn
Assign corresponding status to the current launch.
ReportingApi.setLaunchStatusFailed();
ReportingApi.setLaunchStatusPassed();
ReportingApi.setLaunchStatusSkipped();
ReportingApi.setLaunchStatusStopped();
ReportingApi.setLaunchStatusInterrupted();
ReportingApi.setLaunchStatusCancelled();
ReportingApi.setLaunchStatusInfo();
ReportingApi.setLaunchStatusWarn();
Examples:
// Jasmine
it('should call ReportingApi to set launch statuses', () => {
ReportingApi.setLaunchStatusInfo();
});
// Cucumber
Given('I do something awesome', () => {
ReportingApi.setLaunchStatusInfo();
//...
});
Send logs to report portal for the current test.
ReportingApi.log(level: LOG_LEVELS, message: string, file?: Attachmentm, suite?: string);
required: level
, message
where level
can be one of the following: TRACE, DEBUG, WARN, INFO, ERROR, FATAL
Examples:
// Jasmine
it('should contain logs with attachments', () => {
const fileName = 'test.jpg';
const fileContent = fs.readFileSync(path.resolve(__dirname, './attachments', fileName));
const attachment = {
name: fileName,
type: 'image/jpg',
content: fileContent.toString('base64'),
};
ReportingApi.log('INFO', 'info log with attachment', attachment);
// ...
});
Send logs with corresponding level to report portal for the current suite/test. Should be called inside corresponding suite/test.
ReportingApi.info(message: string, file?: Attachment, suite?: string);
ReportingApi.debug(message: string, file?: Attachment, suite?: string);
ReportingApi.warn(message: string, file?: Attachment, suite?: string);
ReportingApi.error(message: string, file?: Attachment, suite?: string);
ReportingApi.trace(message: string, file?: Attachment, suite?: string);
ReportingApi.fatal(message: string, file?: Attachment, suite?: string);
required: message
Examples:
// Jasmine
describe('should containe suite log', () => {
ReportingApi.info('Log message', null, 'should containe suite log'); // last parameter must match the name of the suite
it('should contain logs with different levels', () => {
ReportingApi.info('Log message');
ReportingApi.debug('Log message');
ReportingApi.warn('Log message');
ReportingApi.error('Log message');
ReportingApi.trace('Log message');
ReportingApi.fatal('Log message');
// ..
});
});
Note: Pay attention if you want to provide log to the
suite
you should pass describe name as a last parameter.
Send logs to report portal for the current launch. Should be called inside the any test.
ReportingApi.launchLog(level: LOG_LEVELS, message: string, file?: Attachment);
required: level
, message
where level
can be one of the following: TRACE, DEBUG, WARN, INFO, ERROR, FATAL
Examples:
// Jasmine
it('should contain logs with attachments', async (page) => {
const fileName = 'test.jpg';
const fileContent = fs.readFileSync(path.resolve(__dirname, './attachments', fileName));
const attachment = {
name: fileName,
type: 'image/jpg',
content: fileContent.toString('base64'),
};
ReportingApi.launchLog('INFO', 'info log with attachment', attachment); // this log attaching to the laucnh
// ...
});
Send logs with corresponding level to report portal for the current launch. Should be called inside the any test.
ReportingApi.launchInfo(message: string, file?: Attachment);
ReportingApi.launchDebug(message: string, file?: Attachment);
ReportingApi.launchWarn(message: string, file?: Attachment);
ReportingApi.launchError(message: string, file?: Attachment);
ReportingApi.launchTrace(message: string, file?: Attachment);
ReportingApi.launchFatal(message: string, file?: Attachment);
required: message
Examples:
// Jasmine
it('launch should contain logs with with different levels', () => {
ReportingApi.launchInfo('Log message');
ReportingApi.launchDebug('Log message');
ReportingApi.launchWarn('Log message');
ReportingApi.launchError('Log message');
ReportingApi.launchTrace('Log message');
ReportingApi.launchFatal('Log message');
// ...
});
Note: Pay attention if you want to provide log to the
launch
you should call ReportingApi methods inside test/it blocks.
To integrate with Sauce Labs just add attributes for the test case:
[{
"key": "SLID",
"value": "# of the job in Sauce Labs"
}, {
"key": "SLDC",
"value": "EU (your job region in Sauce Labs)"
}]
When multiple files are run in parallel, for the current agent implementation this will result in multiple launches in the Report Portal.
To merge them into one launch after the entire run is completed, specify the following option in the config:
isLaunchMergeRequired: true
And add the following code to the WDIO onComplete
hook:
const fs = require('fs');
const glob = require('glob');
const { Reporter } = require('@reportportal/agent-js-webdriverio');
const RPClient = require('@reportportal/client-javascript');
const rpConfig = {
token: '00000000-0000-0000-0000-00000000000',
endpoint: 'http://your.reportportal.server:8080/api/v1',
project: 'YourReportPortalProjectName',
launch: 'YourLauncherName',
description: "Static launch description",
attributes: [{ key: 'key', value: 'value' }, { value: 'value' }],
isLaunchMergeRequired: true,
};
exports.config = {
// ...
reporters: [[Reporter, rpConfig]],
// ...
onComplete: async function (exitCode, config, capabilities, results) {
if (rpConfig.isLaunchMergeRequired) {
try {
const client = new RPClient(rpConfig);
await client.mergeLaunches();
console.log('Launches successfully merged!');
} catch (error) {
console.error(error);
} finally {
const files = glob.sync('rplaunch-*.tmp');
const deleteTempFile = (filename) => {
fs.unlinkSync(filename);
};
files.forEach(deleteTempFile);
}
}
},
}
Licensed under the Apache 2.0 license (see the LICENSE file).
Details
- agent-js-webdriverio
- reportportal
- 12 months ago
- Apache-2.0
- 22 dependencies
Assets
- agent-js-webdriverio-5.1.0.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0