Override Applitools' test name
It is possible to override the test name being sent to Applitools. This can be done using the test data in the following way:
- The parameter applitoolsTestName is the one being sent to Applitools as the test name
- You can either override it or change it in the test data, for example:
return [
{applitoolsTestName: 'testName_english'},
{applitoolsTestName: 'testName_spanish'}
];
- In this example for every test data entry, the test name sent to Applitools will contain the language and will create a different baseline in Applitools
Updated over 4 years ago