Running Selenium Rc Tests In Firefox In Offline Mode
Is there a way to run Selenium test in offline mode? If I set the offline mode in the firefox profile, selenium is stuck at selenium.start(). I'm using the python client driver.
Solution 1:
The following description in a blog helped me to fix the same problem, but using selenium with java junit tests.
Without knowing to much about running selenium from python, I do not see where you are starting the selenium RC server with the firefox profile.
i.e
java -jar selenium-server.jar -firefoxProfileTemplate “”
Post a Comment for "Running Selenium Rc Tests In Firefox In Offline Mode"