Answer the question
In order to leave comments, you need to log in
Simultaneous work of several sessions in selenium?
The ability to open several windows with different sessions seems to be not a problem (10 sessions - 10 windows), but is it possible to work simultaneously in these windows further? That is, in each, further work was performed according to the script, after the last session was launched?
Answer the question
In order to leave comments, you need to log in
Have you tried?
Use selenoid for multi-session tasks. https://aerokube.com/selenoid/
You can open two drivers and access them as needed
browser_main = webdriver.Chrome()
browser_main.get('https://google.com')
browser_branch = webdriver.Chrome()
browser_branch.get('https://google.com')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question