Closed
Description
When using standard Selenium, it's possible to use the following code to define a URL for the browser session to run on:
driver = webdriver.Remote(
command_executor=EXECUTOR_URL,
options=options
)
This makes it possible for another process to hook into the Selenium browser. Is something similar possible with SeleniumBase?