Skip to content

Commit

Permalink
Start selenium server using a specific chromedriver (oppia#5648)
Browse files Browse the repository at this point in the history
* Start selenium server using a specific chromedriver

* Add explanation
  • Loading branch information
apb7 authored Sep 14, 2018
1 parent 0c80300 commit b4097c3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ function maybeInstallDependencies {
bash scripts/install_frontend_tests_dependencies.sh

$NODE_MODULE_DIR/.bin/webdriver-manager update --versions.chrome 2.41
# Start a selenium server using chromedriver 2.41.
# The 'detach' option continues the flow once the server is up and runnning.
# The 'quiet' option prints only the necessary information about the server start-up
# process.
$NODE_MODULE_DIR/.bin/webdriver-manager start --versions.chrome 2.41 --detach --quiet
fi

if [ "$RUN_MINIFIED_TESTS" = "true" ]; then
Expand Down

0 comments on commit b4097c3

Please sign in to comment.