-
-
Save angiejones/ea490f8821f5bd9a6593ef2216421a9b to your computer and use it in GitHub Desktop.
Playwright - wait for element to be DETACHED
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void clearSearchBar(){ | |
page.fill(locator_searchBar, ""); | |
var expectedState = new Page.WaitForSelectorOptions().withState(DETACHED); | |
page.waitForSelector(locator_hiddenBooks,expectedState); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment