Hi there,
I need to be able to use chromedriver to run two different sessions in parallel using the same chrome backend. Currently I seem to be getting a shared session between two parallel runs. Is there anyway to prevent that, such as passing some kind of profile name to seperate the two users as if they were different?
I start chromedriver with start() at the moment:
chromedriver.start([
'--url-base=/wd/hub',
'--port 9515'
])
Thanks in advance
Hi there,
I need to be able to use chromedriver to run two different sessions in parallel using the same chrome backend. Currently I seem to be getting a shared session between two parallel runs. Is there anyway to prevent that, such as passing some kind of profile name to seperate the two users as if they were different?
I start chromedriver with
start()at the moment:Thanks in advance