A library to make parallel selenium tests that automatically download
AutoParaSelenium A library to make parallel selenium tests that automatically download and setup webdrivers. Usage Installation pip install autoparaselenium Code The API is very simple from typing import Union from selenium import webdriver 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, […]
Read more