Skip to content

Commit 6afdff9

Browse files
authored
[ci] Use local chromedriver (#31)
1 parent 276c24e commit 6afdff9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,14 @@ jobs:
4646
- name: Install test dependencies
4747
run: |
4848
python -m pip install -r test-requirements.txt
49-
seleniumbase install chromedriver latest
49+
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
5057
- name: Run Tests
5158
run: |
5259
cd tests

0 commit comments

Comments
 (0)