Crissal1995 / automsr

MIT License
7 stars 0 forks source link

Enable parallel execution for Selenium #54

Open Crissal1995 opened 1 year ago

Crissal1995 commented 1 year ago

Right now, the execution of Selenium is serial; given N profiles, the tool will run Selenium one by one. Thus, the more profiles you have in your config, the longer the overall execution will be.

Instead, it looks like enabling Selenium in parallel is possible, as long as N instances of selenium.Chrome() are created for N profiles.

Some refs:

Crissal1995 commented 1 year ago

Nice library to check: SeleniumBase. It also handles chromedriver downloads automatically