A library to make parallel selenium tests that automatically download and setup webdrivers
This is a WIP
pip install autoparaselenium
The API is very simple
from autoparaselenium import configure, chrome, firefox, run_on, all_, Extension
# All parameters are optional, but still call it once before everything
configure(
extensions=[
Extension(chrome="path to chrome extension to install"),
Extension(firefox="path to firefox extension to install"),
Extension(chrome="chrome path", firefox="firefox path")
],
headless=True, # if there are chrome extensions, chrome will not be headless as a selenium limitation
selenium_dir="./drivers"
)
@run_on(all_)
def test_both_firefox_and_chrome(web):
...
@run_on(firefox)
def test_firefox_only(web):
...
@run_on(chrome)
def test_chrome_only(web):
...
Use pytest -n PROC
where PROC
is the number of parallel threads