Skip to content

Commit f515e23

Browse files
authored
Bumping GeckoDriver to 0.31.0 (#1557)
* Bumping GeckoDriver to 0.31.0 * Bumping Python Selenium to 4.1.3 [skip ci]
1 parent 5f58b68 commit f515e23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NodeFirefox/Dockerfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "latest" ] || [ $FIREFOX_VERS
2020
# GeckoDriver
2121
#============
2222
ARG GECKODRIVER_VERSION=latest
23-
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo "0.30.0"; else echo $GECKODRIVER_VERSION; fi) \
23+
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo "0.31.0"; else echo $GECKODRIVER_VERSION; fi) \
2424
&& echo "Using GeckoDriver version: "$GK_VERSION \
2525
&& wget --no-verbose -O /tmp/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v$GK_VERSION/geckodriver-v$GK_VERSION-linux64.tar.gz \
2626
&& rm -rf /opt/geckodriver \

tests/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ "${CI:-false}" = "false" ]; then
77
source docker-selenium-tests/bin/activate
88
fi
99

10-
python -m pip install selenium==4.1.0 \
10+
python -m pip install selenium==4.1.3 \
1111
docker===4.2.0 \
1212
| grep -v 'Requirement already satisfied'
1313

0 commit comments

Comments
 (0)