blob: 99934deeebe1a0cde723ba154dbef7a6e703f709 (
plain)
1
2
3
4
5
|
#!/bin/bash
export PATH=$PWD/bin:$PATH
JAR="selenium-server-standalone-2.25.0.jar"
[ ! -f "$JAR" ] && curl -O "http://selenium.googlecode.com/files/$JAR"
SELENIUM_DRIVER="*firefox" tox $@ tests/test_selenium.py
|