From a4c3d1bd893728fd2243cf042da6179f933082d8 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 16 Nov 2018 17:31:34 -0800 Subject: [PATCH 1/2] Update chromedriver version --- tests/scripts/get_chromedriver.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/get_chromedriver.sh b/tests/scripts/get_chromedriver.sh index efc892458..5119812f1 100755 --- a/tests/scripts/get_chromedriver.sh +++ b/tests/scripts/get_chromedriver.sh @@ -8,10 +8,10 @@ fi echo "downloading chromedriver" if [[ $os_name == 'Linux' && ! -f $chromedriver_dir/chromedriver ]]; then - cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.39/chromedriver_linux64.zip > tmp.zip && unzip -o tmp.zip && rm tmp.zip + cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip > tmp.zip && unzip -o tmp.zip && rm tmp.zip # wait until download finish sleep 5 elif [[ $os_name == 'Darwin' && ! -f $chromedriver_dir/chromedriver ]]; then - cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.39/chromedriver_mac64.zip | tar xz + cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.43/chromedriver_mac64.zip | tar xz sleep 5 fi From b8d7ed1c149d8c27a0559dbb53f6319729788964 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 30 Nov 2018 13:38:40 -0800 Subject: [PATCH 2/2] Chromedriver 2.43 -> 2.44 --- tests/scripts/get_chromedriver.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/get_chromedriver.sh b/tests/scripts/get_chromedriver.sh index 5119812f1..469d99d72 100755 --- a/tests/scripts/get_chromedriver.sh +++ b/tests/scripts/get_chromedriver.sh @@ -8,10 +8,10 @@ fi echo "downloading chromedriver" if [[ $os_name == 'Linux' && ! -f $chromedriver_dir/chromedriver ]]; then - cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip > tmp.zip && unzip -o tmp.zip && rm tmp.zip + cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip > tmp.zip && unzip -o tmp.zip && rm tmp.zip # wait until download finish sleep 5 elif [[ $os_name == 'Darwin' && ! -f $chromedriver_dir/chromedriver ]]; then - cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.43/chromedriver_mac64.zip | tar xz + cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.44/chromedriver_mac64.zip | tar xz sleep 5 fi