Page MenuHomePhabricator
Paste P15388

wdio.conf.js
ArchivedPublic

Authored by zeljkofilipin on Apr 16 2021, 12:56 PM.
Tags
None
Referenced Files
F34401392: wdio.conf.js
Apr 16 2021, 12:57 PM
F34401390: wdio.conf.js
Apr 16 2021, 12:56 PM
Subscribers
None
exports.config = {
afterTest: function ( test ) {
// if test passed, ignore, else take and save screenshot
if ( test.passed ) {
return;
}
// save screenshot
const screenshotfile = filePath( test, logPath, 'png' );
browser.saveScreenshot( screenshotfile );
console.log( '\n\tScreenshot location:', screenshotfile, '\n' );
}
};