File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,18 @@ RUN pip3 install --upgrade setuptools
84
84
RUN pip3 install --upgrade setuptools-scm
85
85
RUN cd /SeleniumBase && ls && pip3 install -r requirements.txt --upgrade
86
86
RUN cd /SeleniumBase && python3 setup.py develop
87
- RUN seleniumbase install chromedriver
88
- RUN seleniumbase install geckodriver
87
+
88
+ # =====================
89
+ # Download WebDrivers
90
+ # =====================
91
+ RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-linux32.tar.gz
92
+ RUN tar -xvzf geckodriver-v0.29.1-linux32.tar.gz
93
+ RUN chmod +x geckodriver
94
+ RUN mv geckodriver /usr/local/bin/
95
+ RUN wget https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip
96
+ RUN unzip chromedriver_linux64.zip
97
+ RUN mv chromedriver /usr/local/bin/
98
+ RUN chmod +x /usr/bin/chromedriver
89
99
90
100
# ==========================================
91
101
# Create entrypoint and grab example tests
You can’t perform that action at this time.
0 commit comments