python - How to run multiple Selenium Firefox browsers concurrently? -
trying run multiple processes concurrently on same machine, use selenium. happen this:
python my_selenium_process1.py & python my_selenium_process2.py & python my_selenium_process3.py &
as far have been able test, results in selenium opening firefox instances in sequence, not desired behavior.
additional note: according this question on superuser multiple firefox instances, way use --no-remote
start flag firefox. seems way go, i'm not sure if there simpler way or if i'm looking for.
edit: purpose, more speeding particular test case, allow multiple selenium processes run concurrently.
thanks much! suggestion appreciated!
sudo easy_install -u python-wd-parallel
then
check usage here
Comments
Post a Comment