Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4d7c7a0
Update translations.
zoracon May 6, 2019
569e802
Update translations.
zoracon May 6, 2019
a52f5bf
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon May 9, 2019
8abb2e1
Create pull_request_template.md
zoracon Sep 5, 2019
342a077
Update pull_request_template.md
zoracon Sep 5, 2019
e673a85
Create pull_request_template_new.md
zoracon Oct 21, 2019
06828ef
Create existing_contributors.md
zoracon Oct 21, 2019
dde3fdc
Delete pull_request_template.md
zoracon Oct 21, 2019
2ee5983
Rename pull_request_template_new.md to pull_request_template.md
zoracon Oct 21, 2019
9c4fcc1
Adjust cipher suites that are cross supported in FireFox ESR and Chrome
zoracon Mar 6, 2020
c17c852
Revert "Adjust cipher suites that are cross supported in FireFox ESR …
zoracon Mar 6, 2020
df48bc3
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 11, 2020
0bad2d5
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 16, 2020
24df05e
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 16, 2020
6478cca
Update translations.
zoracon Mar 16, 2020
0ae37f2
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 19, 2020
7025393
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 24, 2020
1702340
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Mar 24, 2020
9aa5833
Merge branch 'master' of github.com:zoracon/https-everywhere
zoracon Apr 6, 2020
bc7f51e
Merge branch 'master' of github.com:EFForg/https-everywhere
zoracon Apr 22, 2020
adb2897
Hotfix: Chromedriver is failing in Travis
zoracon Apr 22, 2020
f905aa2
Add in condition for both Chrome Browsers
zoracon Apr 22, 2020
b365f67
Add in missing passing arg
zoracon Apr 22, 2020
ba895d1
Add in missing condition closure
zoracon Apr 23, 2020
2f80cd6
Fix typo on TEST input variable
zoracon Apr 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions test/setup_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ toplevel=$(git rev-parse --show-toplevel)
function setup_chrome {
# Install the latest version of the chromedriver
version=$(wget https://chromedriver.storage.googleapis.com/LATEST_RELEASE -q -O -)
url="https://chromedriver.storage.googleapis.com/${version}/chromedriver_linux64.zip"

# Mismatch on Chromedriver Latest and Chrome Beta, hardcode for Chrome Beta
if [ "$1" == "chrome beta" ]; then
url="https://chromedriver.storage.googleapis.com/83.0.4103.14/chromedriver_linux64.zip"
elif [ "$1" == "chrome stable" ]; then
url="https://chromedriver.storage.googleapis.com/${version}/chromedriver_linux64.zip"
fi

wget -O /tmp/chromedriver.zip ${url}
sudo unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/
sudo chmod a+x /usr/local/bin/chromedriver
Expand Down Expand Up @@ -44,7 +51,7 @@ function setup_docker {

case $TEST in
*chrome*)
setup_chrome
setup_chrome "$TEST"
browser_setup
;;
*firefox*) # Install the latest version of geckodriver
Expand Down