Skip to content

Commit 83a0aec

Browse files
authored
fix: correct Chrome for Testing and Edge driver installation issues (#155)
* fix: migrate Edge driver download url to msedgedriver.microsoft.com * fix: correct permissions issue installing Chrome for Testing 139
1 parent fe1ad39 commit 83a0aec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/scripts/install_chrome_for_testing.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ elif command -v apt >/dev/null 2>&1; then
5858
fi
5959

6060
$SUDO apt-get update
61+
$SUDO chmod +r /opt/chrome-for-testing/deb.deps
6162
while read -r pkg; do
6263
$SUDO apt-get satisfy -y --no-install-recommends "${pkg}";
6364
done < /opt/chrome-for-testing/deb.deps;
@@ -80,4 +81,4 @@ if [ "$ORB_PARAM_INSTALL_CHROMEDRIVER" = true ] ; then
8081
echo "Error installing Chrome for testing"
8182
exit 1
8283
fi
83-
fi
84+
fi

src/scripts/install_edge_driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ else
1818
fi
1919

2020

21-
wget -q -O edgedriver.zip "https://msedgedriver.azureedge.net/$VERSION/edgedriver_$PLATFORM.zip"
21+
wget -q -O edgedriver.zip "https://msedgedriver.microsoft.com/$VERSION/edgedriver_$PLATFORM.zip"
2222
unzip edgedriver.zip >/dev/null 2>&1
2323
$SUDO mv msedgedriver "$ORB_PARAM_DRIVER_INSTALL_DIR"
2424
rm -rf edgedriver.zip Driver_Notes

0 commit comments

Comments
 (0)