Is there a way to have one chromedriver process instance running but have two different Selenium WebDrivers connected to it where both run code at the same time? (e.g. navigate to a URL, click on a button, ...)?
I know that I can open two different pages on the same headless browser and switch between them, but I want to do both processings simultaneously, so that won't work for me.
I'm writing this in Java.