We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276c24e commit 6afdff9Copy full SHA for 6afdff9
.github/workflows/ci.yml
@@ -46,7 +46,14 @@ jobs:
46
- name: Install test dependencies
47
run: |
48
python -m pip install -r test-requirements.txt
49
- seleniumbase install chromedriver latest
+
50
+ - name: Find Chrome Location
51
+ if : ${{ matrix.os == 'windows-latest' }}
52
+ run: |
53
+ if not exist "C:\Program Files (x86)\Google" mkdir "C:\Program Files (x86)\Google"
54
+ if not exist "C:\Program Files (x86)\Google\Chrome" mkdir "C:\Program Files (x86)\Google\Chrome"
55
+ mklink /D "C:\Program Files (x86)\Google\Chrome\Application" "C:\Program Files\Google\Chrome\Application"
56
+ shell: cmd
57
- name: Run Tests
58
59
cd tests
0 commit comments