Changes between Initial Version and Version 1 of Ticket #29883
- Timestamp:
- Oct 23, 2018, 8:00:01 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29883 – Description
initial v1 1 1 Currently `runtests.py` supports running Selenium tests using a local browser only. This can make running tests against specific versions quite hard. 2 2 3 Selenium supports a feature called 'hub': https://github.com/SeleniumHQ/docker-selenium/wiki/Getting-Started-with-Docker-Compose#python 3 Selenium supports a feature called 'hub': https://github.com/SeleniumHQ/docker-selenium/wiki/Getting-Started-with-Docker-Compose#python. This allows you to spin up multiple different browsers as docker containers, or connect to remote cloud-hosted ones. 4 4 5 5 A hub backed webdriver is compatible with a local one, so no tests need to be updated. A flag could be added to `runtests.py` specifying a hub URL, and then a WebDriver is created from that URL.