Merge "selenium: Update WebdriverIO configuration file"

This commit is contained in:
jenkins-bot 2021-04-23 14:53:51 +00:00 committed by Gerrit Code Review
commit db0b1e9585

View file

@ -29,10 +29,10 @@ exports.config = {
// Wiki admin // Wiki admin
mwUser: process.env.MEDIAWIKI_USER || 'Admin', mwUser: process.env.MEDIAWIKI_USER || 'Admin',
mwPwd: process.env.MEDIAWIKI_PASSWORD || 'vagrant', mwPwd: process.env.MEDIAWIKI_PASSWORD || 'dockerpass',
// Base for browser.url() and Page#openTitle() // Base for browser.url() and Page#openTitle()
baseUrl: ( process.env.MW_SERVER || 'http://127.0.0.1:8080' ) + ( baseUrl: ( process.env.MW_SERVER || 'http://localhost:8080' ) + (
process.env.MW_SCRIPT_PATH || '/w' process.env.MW_SCRIPT_PATH || '/w'
), ),
@ -148,14 +148,9 @@ exports.config = {
ffmpeg.kill( 'SIGINT' ); ffmpeg.kill( 'SIGINT' );
} }
// if test passed, ignore, else take and save screenshot
if ( test.passed ) {
return;
}
// save screenshot // save screenshot
const screenshotfile = filePath( test, logPath, 'png' ); const screenshotfile = filePath( test, logPath, 'png' );
browser.saveScreenshot( screenshotfile ); browser.saveScreenshot( screenshotfile );
console.log( '\n\tScreenshot location:', screenshotfile, '\n' );
} }
}; };