sb.wait_for_element_visible
ignores other matching elements
#3904
-
suppose a selector The behavior I want (and I expected) is to wait for any of the matching present 5 elements to be visible. Is this behavior expected and how can I achieve the behavior I wanted? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There are methods for that: sb.wait_for_any_of_elements_visible(*args, **kwargs) |
Beta Was this translation helpful? Give feedback.
There are methods for that:
sb.wait_for_any_of_elements_visible(*args, **kwargs)
sb.wait_for_any_of_elements_present(*args, **kwargs)
sb.assert_any_of_elements_visible(*args, **kwargs)
sb.assert_any_of_elements_present(*args, **kwargs)