Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit b4f7562

Browse files
authored
Fix chromium-driver for Debian 10+; Use firefox-esr instead of iceweasel (#19868)
* Since Debian Stretch, Iceweasel is as transitional package Ref: https://wiki.debian.org/Firefox#Iceweasel * chromedriver has been renamed to chromium-driver with Debian Stretch Since Debian Buster, no transitional package for the old name is provided anymore.
1 parent 8f64bb4 commit b4f7562

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

install-dev-dependencies.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ if type apt-get>/dev/null 2>&1; then
3535
BROWSERS="firefox chromium-browser"
3636
CHROMEDRIVER="chromium-chromedriver"
3737
if [[ "$(lsb_release -is)" == "Debian" ]]; then
38-
# Iceweasel is the rebranded Firefox that Debian ships, and Chromium
39-
# takes the name of 'chromium' instead of 'chromium-browser' in
38+
# Chromium takes the name of 'chromium' instead of 'chromium-browser' in
4039
# Debian 7 (wheezy) and later.
41-
BROWSERS="iceweasel chromium"
42-
CHROMEDRIVER="chromedriver"
40+
BROWSERS="firefox-esr chromium"
41+
CHROMEDRIVER="chromium-driver"
4342
fi
4443
$SUDO_SHIM apt-get install -y libxml2-dev libxml2-utils libxslt1-dev \
4544
python3.6-dev $BROWSERS zip sqlite3 python3-pip libcurl4-openssl-dev xvfb \

0 commit comments

Comments
 (0)