Pass in arbitrary kwargs to WebDriver
v1.13.0 - 2021.08.24
Overview
You can now pass in other, arbitrary keyword arguments (aka "kwargs") to WebDriver. For example, to change the service log path, you would do this:
{
"driver": {
"webdriver_kwargs": {"service_log_path": "webdriver.log"}
}
}
Added
- Pass in arbitrary kwargs to WebDriver through
pylenium.json
- Element highlighting with the
Element.highlight()
method
# highlight the button element
py.get("#button").hightlight()