https://github.com/galaxyproject/galaxy
Revision c1397908cd1fc81b294849008b1e5ec1b1381660 authored by Nate Coraor on 15 December 2016, 19:09:48 UTC, committed by Nate Coraor on 15 December 2016, 19:09:48 UTC
1 parent 5c01c01
Raw File
Tip revision: c1397908cd1fc81b294849008b1e5ec1b1381660 authored by Nate Coraor on 15 December 2016, 19:09:48 UTC
Update version to 16.10
Tip revision: c139790
run_selenium_tests.sh
#!/bin/sh

if [ ! -f selenium-server.jar ]; then
    echo "Need to download selenium-server.jar from:"
    echo "http://nexus.openqa.org/content/repositories/snapshots/org/seleniumhq/selenium/server/selenium-server/1.0-SNAPSHOT/selenium-server-1.0-20090319.053109-107-standalone.jar"
fi

java -jar selenium-server.jar -htmlSuite "*firefox" "http://localhost:8080" ./test/selenium/workflow/Suite.html ./selenium_results.html
back to top