⏱️Elements.should()
A collection of expected conditions against a list of Elements
Expectations
Positive Conditions
Negative Conditions
Syntax
# use the default wait_time
Elements.should().<expectation>
---or---
# customize the wait_time for this expectation
Elements.should(timeout: int).<expectation>
---or---
# ignore exceptions that you expect to "get in the way"
Elements.should(ignored_exceptions: list).<expectation>
---or---
# customize both fully
Elements.should(timeout: int, ignored_exceptions: list).<expectation>Examples
Last updated