Questions tagged [pytest-selenium]

No instructions are available for this tag at the moment.

Exploring Pytest tests within nested directories

Hey there! I've been working on a project architecture using selenium with pytest. https://i.stack.imgur.com/MDZEC.png I'm facing an issue where, when I'm in the root folder from the terminal, I can't run tests located in the " ests" folder I thought Py ...

Issue encountered with Pytest Selenium due to elem.send_keys() causing a TypeError stating that an object of type 'NoneType' does not have a length

Struggling to input data into a login textbox using 'send_keys' function and encountering an error.. def wait_for_element(selenium, selenium_locator, search_pattern, wait_seconds=10): elem = None wait = WebDriverWait(selenium, wait_secon ...