How can I run individual test cases against a locally running Selenium server?

Lately i have been trying to run individual test cases against a locally running Selenium server, but i am failing all along. Can anyone please guide me how to do it.

2 Likes

You can export your tests to some other format such as PHP, Python representing each file as a different test case, then you can execute each file (or test case) separately using runner of that particular language.

i.e phpunit test test.php or python test.py

3 Likes