expect-playwright
expect-playwright copied to clipboard
Expect utility matcher functions to simplify expect statements for the usage with Playwright Test or Jest Playwright.
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...
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...