@testing-library: Wait for appearance or disappearance of element
30 June 2022 (Updated 30 June 2022)
Wait for elements to appear
Using findBy
query
Using waitFor
Wait for disappearance
Using waitForElementToBeRemoved
This will use a MutationObserver
by using a callback to query for the element on each DOM mutation and resolve to true
when the element is removed. This is more efficient than polling using waitFor
.
Using waitFor
Keep polling at regular intervals until the callback doesn’t throw an error.
Sources
Tagged:
JavaScript testing
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment