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 aba4d02 commit 8c34749Copy full SHA for 8c34749
.github/workflows/ci.yml
@@ -95,13 +95,10 @@ jobs:
95
runs-on: ubuntu-latest
96
steps:
97
- uses: actions/checkout@v5
98
- - name: Install Chrome
99
- run: sudo apt-get install -y google-chrome-stable
100
- name: Install Selenium
101
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
+ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
+ sudo dpkg -i google-chrome-stable_current_amd64.deb || sudo apt-get -f install -y
105
- uses: actions/setup-python@v6
106
with:
107
python-version: ${{ matrix.python-version }}
0 commit comments