sb.wait_for_element_visible ignores other matching elements
#3904
Answered
by
mdmintz
Abdelgha-4
asked this question in
Q&A
|
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? |
Answered by
mdmintz
Jul 27, 2025
Replies: 1 comment 2 replies
|
There are methods for that: sb.wait_for_any_of_elements_visible(*args, **kwargs) |
2 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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)