pytest-selenium
pytest-selenium copied to clipboard
Plugin for running Selenium with pytest
updates: - [github.com/psf/black: 22.3.0 → 22.10.0](https://github.com/psf/black/compare/22.3.0...22.10.0) - [github.com/pre-commit/pre-commit-hooks: v4.1.0 → v4.3.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.1.0...v4.3.0) - [github.com/PyCQA/flake8: 4.0.1 → 5.0.4](https://github.com/PyCQA/flake8/compare/4.0.1...5.0.4)
Hi, I've only looked at the source code so far, and it seems cumbersome to programmatically initialize a custom driver, it's not documented at least. And it'd be nice if...
``` pytest-selenium 3.0.0 requires pytest=6.0.0, but you have pytest 7.1.1 which is incompatible. pytest-selenium 3.0.0 requires selenium=3.0.0, but you have selenium 4.1.2 which is incompatible ``` since release 3.0.0 works...
When running a customer project's tests I get the following deprecation warnings: ``` /.../selenium-4.1.0-py3.9.egg/selenium/webdriver/chrome/webdriver.py:70: DeprecationWarning: desired_capabilities has been deprecated, please pass in a Service object super(WebDriver, self).__init__(DesiredCapabilities.CHROME['browserName'], "goog", /.../selenium-4.1.0-py3.9.egg/selenium/webdriver/chrome/webdriver.py:70: DeprecationWarning:...
Using v2.0.1, the following error is thrown when `--capability browserName edge`: ``` elif browser == "EDGE": > key = edge_options.KEY E AttributeError: 'Options' object has no attribute 'KEY' ../python_venvs/default/lib/python3.9/site-packages/pytest_selenium/pytest_selenium.py:115: AttributeError...
When using pytest-selenium to run tests in Saucelabs using Internet Explorer on Windows 10, we currently get an error when trying to gather logs after the test run: ``` INTERNALERROR>...
Per the explanation on this issue: https://github.com/pytest-dev/pytest-selenium/issues/273 Driven by a need to perform a large number of regression tests on a legacy app by obtaining a cookie using Selenium and...
Hi, I want to extend the pytest-selenium methods, but adding the new method in WebDriver class somehow doesn't work and still reports `AttributeError: 'WebDriver' object has no attribute 'wait'`. I've...
It would be great to add support for TestProject drivers: https://github.com/testproject-io/python-opensdk
Hi there. Driven by a need to perform a large number of regression tests on a legacy app by obtaining a cookie using Selenium and then essentially calling the app's...