https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 9ee3d01c301ca067f7b94ee3c75bd784fafc4572 authored by Nate Coraor on 15 December 2016, 17:36:21 UTC
Merge branch 'release_14.10' into release_15.01
Tip revision: 9ee3d01
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