IKivan-kozenko -aqa
Try yourself as a QA tester
Back to topic

Quiz

Auto-waiting

Check yourself

  1. 1.A button is visible and enabled, but clicking it does nothing in the test. The page has a loading spinner that covers the button briefly. What's happening and how does Playwright handle it?
  2. 2.An element has opacity: 0 in CSS. Is it considered 'visible' by Playwright's actionability checks?
  3. 3.What does Playwright's 'stable' check verify before performing a click?
  4. 4.When does Playwright throw a TimeoutError for an actionability check?
  5. 5.What does passing { force: true } to locator.click() actually skip?
  6. 6.Which actionability checks does locator.fill() require, compared to locator.click()?
  7. 7.An element has [aria-disabled='true'] on its parent. Will locator.click() wait or throw?
  8. 8.How is expect(locator).toBeVisible() different from Playwright's actionability 'visible' check?