Skip to content

Commit

Permalink
Merge pull request #1382 from hydephp/downgrade-Chrome-driver-to-v114
Browse files Browse the repository at this point in the history
Downgrade Chrome driver to v114
  • Loading branch information
caendesilva authored Oct 12, 2023
2 parents 2795c2a + 3e2b62c commit 56a0b30
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/end-to-end-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ jobs:
- name: Prepare the Environment
run: echo -e "APP_URL=http://localhost:8080 \nDUSK_ENABLED=true\nSERVER_DASHBOARD=false" > .env

- name: Upgrade Chrome Driver
run: php hyde dusk:chrome-driver `/opt/google/chrome/chrome --version | cut -d " " -f3 | cut -d "." -f1`
- name: Downgrade Chrome browser to v114
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 1134343 # Last commit number for Chrome v114
id: setup-chrome
- run: sudo ln -fs ${{ steps.setup-chrome.outputs.chrome-path }} /usr/bin/google-chrome
- name: Downgrade Chrome driver to v114
run: php hyde dusk:chrome-driver `/usr/bin/google-chrome --version | cut -d " " -f3 | cut -d "." -f1`

- name: Start Chrome Driver
run: ./vendor/laravel/dusk/bin/chromedriver-linux &

Expand Down

0 comments on commit 56a0b30

Please sign in to comment.