pytest-splinter
pytest-splinter copied to clipboard
pytest splinter and selenium integration for anyone interested in browser interaction in tests
Found via `codespell -S .env,node_modules -L astroid`
In the old tox configuration I can find that there was lint running, which used black. The current codebase is not very likely to be black-compatible, as you can see...
Hi there, it seems in pytest-splinter it is not possible to disable implicit wait (see here https://github.com/pytest-dev/pytest-splinter/blob/5522d59fcabfa8904385c1e10ca61460a25193e0/pytest_splinter/plugin.py#L596) but the issue is that if I want to use an explicit wait...
In _browser_screenshot_session, you have the following code: ``` fixture_values = ( # pytest 3 getattr(request, '_fixture_values', {}) or # pytest 2 getattr(request, '_funcargs', {}) ) for name, value in fixture_values.items():...