pull/4716/head
bunsenstraat 7 months ago
parent 9ff947bc69
commit 2584022c09
  1. 3
      .circleci/config.yml
  2. 4
      apps/remix-ide-e2e/nightwatch.ts
  3. 3
      chrome.sh

@ -378,8 +378,9 @@ jobs:
- browser-tools/install-browser-tools: - browser-tools/install-browser-tools:
install-firefox: true install-firefox: true
install-chrome: false install-chrome: false
install-geckodriver: true install-geckodriver: false
install-chromedriver: false install-chromedriver: false
- run: sh ./chrome.sh
- run: firefox --version - run: firefox --version

@ -9,7 +9,6 @@ module.exports = {
webdriver: { webdriver: {
start_process: true, start_process: true,
port: 4444, port: 4444,
server_path: './node_modules/geckodriver/bin/geckodriver.js',
cli_args: [ cli_args: [
// very verbose geckodriver logs // very verbose geckodriver logs
// '-vv' // '-vv'
@ -88,6 +87,9 @@ module.exports = {
}, },
'firefox': { 'firefox': {
web_driver: {
server_path: './node_modules/geckodriver/bin/geckodriver.js'
},
desiredCapabilities: { desiredCapabilities: {
'browserName': 'firefox', 'browserName': 'firefox',
'javascriptEnabled': true, 'javascriptEnabled': true,

@ -2,4 +2,5 @@
VERSION=$(grep -Eo '[0-9]+\.' < version.txt | head -1 | cut -d'.' -f1) VERSION=$(grep -Eo '[0-9]+\.' < version.txt | head -1 | cut -d'.' -f1)
echo "CHROME DRIVER INSTALL $VERSION" echo "CHROME DRIVER INSTALL $VERSION"
yarn add -D chromedriver@$VERSION yarn add -D chromedriver@$VERSION
rm version.txt rm version.txt
yarn add -D geckodriver
Loading…
Cancel
Save