diff --git a/images/linux/scripts/installers/google-chrome.sh b/images/linux/scripts/installers/google-chrome.sh index 437f56eda..7cfc2aa7f 100644 --- a/images/linux/scripts/installers/google-chrome.sh +++ b/images/linux/scripts/installers/google-chrome.sh @@ -45,11 +45,15 @@ chown root:root /usr/bin/chromedriver chmod +x /usr/bin/chromedriver # Run tests to determine that the chromedriver installed as expected +echo "Testing to make sure that script performed as expected, and basic scenarios work" if ! command -v chromedriver; then echo "chromedriver was not installed" exit 1 fi +echo "Lastly, documenting what we added to the metadata file" +DocumentInstalledItem "Chromedriver ($(chromedriver --version))" + # Download selenium standalone server (hardcoded version 3.141.59) echo "Downloading selenium-server-standalone v3.141.59..." wget https://selenium-release.storage.googleapis.com/3.141/selenium-server-standalone-3.141.59.jar \ No newline at end of file