nhsuk / ui-test-core

Python package which helps with writing UI tests by providing a wrapper around Selenium and other useful functions
MIT License
12 stars 6 forks source link

Selenium update #43

Closed ghufrankhan closed 1 year ago

ghufrankhan commented 1 year ago

Description

Motivation and Context

Previously, if your browser version and your driver version (e.g. ChromeDriver) did not match you would see an error. To resolve this you would need to download the correct driver version that matches your browser version. This is now handled by Selenium (since version 4.6.0). Selenium will now download the correct and appropriate version of driver to your PATH (you do not need to add it to your _browserexecutables folder)

Checklist