You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some code that clicks on a button and checks whether a specific element on the page changes its css display property to none upon a successful operation eg. if the available date picked is available, then the date entry form would be collapsed and have css property display: none. How do I wait for css property to be completely updated? I don't think race selectors are useful here since the outcome is uncertain and depends on the result of user operations, typically verified by an backend API call.
The text was updated successfully, but these errors were encountered:
But this is expecting this element to change its display to none; however, this is not always the case. If, for example, the date is unavailable, then it will stay visible. How do I add a timeout to deal with this?
Rod Version: v0.114.0
I have some code that clicks on a button and checks whether a specific element on the page changes its css display property to none upon a successful operation eg. if the available date picked is available, then the date entry form would be collapsed and have css property
display: none
. How do I wait for css property to be completely updated? I don't think race selectors are useful here since the outcome is uncertain and depends on the result of user operations, typically verified by an backend API call.The text was updated successfully, but these errors were encountered: