https://github.com/galaxyproject/galaxy
Raw File
Tip revision: b3da771a637ac9f7a4778fd115a09da01f432b1c authored by Nate Coraor on 12 August 2015, 21:14:14 UTC
Bump version to 15.07 (drop .dev)
Tip revision: b3da771
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