Skip to content

Commit 8c34749

Browse files
committed
Use selenium deb package in CI
1 parent aba4d02 commit 8c34749

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,10 @@ jobs:
9595
runs-on: ubuntu-latest
9696
steps:
9797
- uses: actions/checkout@v5
98-
- name: Install Chrome
99-
run: sudo apt-get install -y google-chrome-stable
10098
- name: Install Selenium
10199
run: |
102-
mkdir bin
103-
curl -O https://chromedriver.storage.googleapis.com/`curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip
104-
unzip chromedriver_linux64.zip -d bin
100+
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
101+
sudo dpkg -i google-chrome-stable_current_amd64.deb || sudo apt-get -f install -y
105102
- uses: actions/setup-python@v6
106103
with:
107104
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)