Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created September 11, 2020 20:18
Show Gist options
  • Save angiejones/3d6712497ef85d335fd62d15d21bcb64 to your computer and use it in GitHub Desktop.
Save angiejones/3d6712497ef85d335fd62d15d21bcb64 to your computer and use it in GitHub Desktop.
Playwright - Use Mocha to verify number of elements
const visibleBooksSelector = 'li:not(.ui-screen-hidden)'
const visibleBooks = await page.$$(visibleBooksSelector)
assert.equal(visibleBooks.length, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment