Reputation: 11470
Using the Selenium Python bindings, is it possible to start the RemoteWebDriver
server separately from creating a webdriver.Remote
instance? The point of doing this would be to save time spent repeatedly starting and stopping the server when all I really need is a new instance of the client. (This is possible with ChromeDriver.)
Upvotes: 0
Views: 222
Reputation: 60644
the server is started independently. creating an instance of webdriver.Remote
does not start the server.
Upvotes: 1