Use geckodriver 0.30 for firefox until 0.31 works

This commit is contained in:
Filip Proborszcz
2022-05-02 15:13:42 +02:00
parent a8f6208561
commit 4705bf823a
2 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,8 @@ exports.config = {
browserName: (process.env.BROWSER || 'chrome'),
}
],
services: process.env.DOCKER_HOST ? [] : ['selenium-standalone'],
// geckodriver-0.31 seems to have problems as of 2022 May 1
services: process.env.DOCKER_HOST ? [] : [ ['selenium-standalone', { drivers: { firefox: '0.30.0', chrome: 'latest' } } ] ],
logLevel: 'info',
bail: 0,
screenshotPath: SCREENSHOT_PATH,