Trying to run multiple processes concurrently on the same machine, which use Selenium. What would happen is something like this:
python my_selenium_process1.py &
python my_selenium_process2.py &
python my_selenium_process3.py &
As far as I have been able to test, this results in Selenium opening the Firefox instances in sequence, which is not the desired behavior.
Additional note: According to this question on superuser about multiple Firefox instances, the way to do this would be to use the --no-remote
start up flag for Firefox. This seems like a good way to go, but I'm not sure if there is a simpler way to do it or if this is even what I'm looking for.
Edit: The purpose, more than speeding up a particular test case, is to allow multiple Selenium processes to run concurrently.
Thanks very much! Any suggestion will be appreciated!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…