Julian A.
Julian A.

Reputation: 11470

Start `RemoteWebDriver` server separately from creating a `webdriver.Remote` instance?

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

Answers (1)

Corey Goldberg
Corey Goldberg

Reputation: 60644

the server is started independently. creating an instance of webdriver.Remote does not start the server.

Upvotes: 1

Related Questions