Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created January 29, 2021 06:07
Show Gist options
  • Save angiejones/ea490f8821f5bd9a6593ef2216421a9b to your computer and use it in GitHub Desktop.
Save angiejones/ea490f8821f5bd9a6593ef2216421a9b to your computer and use it in GitHub Desktop.
Playwright - wait for element to be DETACHED
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