summaryrefslogtreecommitdiff
path: root/selenium_tests
blob: 8560677c1763f2a32b7c7d085f44ceae33c2110c (plain)
1
2
3
4
5
6
7
#!/bin/bash
export PATH=$PWD/bin:$PATH
JAR="selenium-server-standalone-2.4.0.jar"
[ ! -f "$JAR" ] && curl -O "http://selenium.googlecode.com/files/$JAR"
export SELENIUM_JAR="$JAR" 
SELENIUM_DRIVER="*chrome" nosetests -x tests/test_selenium.py
SELENIUM_DRIVER="*firefox" nosetests -x tests/test_selenium.py