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
- A CSS transition/animation on the element (or an ancestor) is still in progress when the action fires
How to fix it
- Disable animations for the test run (e.g. inject `* { transition: none !important; animation: none !important; }`)
- Otherwise, let Playwright's auto-wait finish naturally rather than forcing the click with a shorter timeout