-
-
Save angiejones/80472de480f646bb86b2eed399dbb322 to your computer and use it in GitHub Desktop.
Playwright - wait for element to be present
This file contains 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
it('should return one book when exact title is given', async () => { | |
await page.fill('#searchBar', 'Agile Testing') | |
await page.waitForSelector('li.ui-screen-hidden', { state: 'attached' }) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment