expect-playwright icon indicating copy to clipboard operation
expect-playwright copied to clipboard

Expect utility matcher functions to simplify expect statements for the usage with Playwright Test or Jest Playwright.

Results 3 expect-playwright issues
Sort by recently updated
recently updated
newest added

This fails `await expect(page).toHaveSelector('div.ember-cli-notifications-notification__container');` where this passes `await expect(page).toHaveSelector('div#content-wrapper');` are selector's something other then CSS selectors? Or perhaps I expect different behavior? *I am certain a div.ember-cli-notifications-notification__container exists on my...

triaging

Hi guys, I replaced the deprecated method **toHaveText** with the new one **toMatchText** and many of the tests failed. The reason for the failure is the presence of whitespace. For...

Hi here, Currently, all assertions are designed to check a single element. It would be helpful to check multiple elements (list items, table cells) and assert that they contain certain...

enhancement
p3-collecting-feedback