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/chrome.sh

5 lines
235 B

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