File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ RUN cd /SeleniumBase && pip3 install .
89
89
# Download WebDrivers
90
90
# =====================
91
91
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz
92
- RUN tar -xvzf geckodriver-v0.31.0-linux32 .tar.gz
92
+ RUN tar -xvzf geckodriver-v0.31.0-linux64 .tar.gz
93
93
RUN chmod +x geckodriver
94
94
RUN mv geckodriver /usr/local/bin/
95
95
RUN wget https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ lunr==0.6.2
25
25
nltk == 3.7
26
26
watchdog == 2.1.7
27
27
mkdocs == 1.3.0
28
- mkdocs-material == 8.2.14
28
+ mkdocs-material == 8.2.15
29
29
mkdocs-exclude-search == 0.6.4
30
30
mkdocs-simple-hooks == 0.1.5
31
31
mkdocs-material-extensions == 1.0.3
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "3.0.0 "
2
+ __version__ = "3.0.1 "
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ def dashboard_pre_processing():
761
761
762
762
command_args = sys .argv [1 :]
763
763
command_string = " " .join (command_args )
764
+ command_string = command_string .replace ("--quiet" , "" )
765
+ command_string = command_string .replace ("-q" , "" )
764
766
proc = subprocess .Popen (
765
767
"behave -d %s --show-source" % command_string ,
766
768
stdout = subprocess .PIPE ,
You can’t perform that action at this time.
0 commit comments