How to run Selenium tests written in PHP from the command line

I am trying to run Selenium tests (PHP) from the command line. I can only find ways to run HTML tests on stackoverflow.

java -jar selenium-server.jar -htmlSuite "* firefox" "http://10.8.100.106" "C: \ mytestsuite.html" "C: \ results.html"

Is there a way to do the same for PHP testuite?

Currently, I only know how to run them from my NetBeans IDE.

+4
source share
1 answer

Just run your PHPUnit package as usual if you are not using Se. See http://www.phpunit.de/manual/3.2/en/organizing-test-suites.html for more details.

+2
source

All Articles