diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e980c7..cd42f15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,8 +162,7 @@ jobs: services: selenium: - # geckodriver-0.31 seems to have problems as of 2022 May 1 - image: selenium/standalone-${{ matrix.browser == 'firefox' && 'firefox:99.0-geckodriver-0.30-20220427' || matrix.browser }} + image: selenium/standalone-${{ matrix.browser }} ports: - 4444:4444 options: --shm-size=2gb diff --git a/config/wdio.conf.js b/config/wdio.conf.js index a9451f2..c5f8206 100644 --- a/config/wdio.conf.js +++ b/config/wdio.conf.js @@ -26,7 +26,7 @@ exports.config = { } ], // 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' } } ] ], + services: process.env.DOCKER_HOST ? [] : [ ['selenium-standalone', { drivers: { firefox: 'latest', chrome: 'latest' } } ] ], logLevel: 'info', bail: 0, screenshotPath: SCREENSHOT_PATH,