Playwright error

Error: element is not stable - waiting for element to stop moving

Playwright refuses to click a moving target because a CSS transition or animation is still running on the element.

Why this happens

How to fix it

  1. Disable animations for the test run (e.g. inject `* { transition: none !important; animation: none !important; }`)
  2. Otherwise, let Playwright's auto-wait finish naturally rather than forcing the click with a shorter timeout