I'm working on a project that uses Selenium Python for web scraping. I want to use the multiprocessing library to run multiple windows at once BUT I want to set a limit for simultaneously running browsers.
My idea is to have five processes, of which two are running simultaneously at a time. Once one is finished, a new one can start. I searched for this online, but every solution I tried resulted in either one process running or all running at once.
Does anyone have experiences with multiprocessing webdrivers?