remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/remix-ide-e2e/install-webdriver.sh

5 lines
247 B

7 months ago
google-chrome --version > version.txt
VERSION=$(grep -Eo '[0-9]+\.' < version.txt | head -1 | cut -d'.' -f1)
echo "CHROME DRIVER INSTALL $VERSION"
7 months ago
yarn add -D chromedriver@$VERSION geckodriver
rm version.txt