Migrating to WebDriver PlusΒΆ

Where possible WebDriver Plus remains compatible with WebDriver, which means that migrating can often be as simple as importing webdriverplus in place of webdriver.

So you’d replace your existing import:

from selenium import webdriver

with this:

import webdriverplus as webdriver

Todo

List incompatible changes. Explain relation between base classes in each.

Note

If you’re migrating from webdriver to webdriverplus, please consider making a note of any issues you come across, and letting me know.

Previous topic

Inspection & Manipulation

Next topic

Contributing

This Page