page.mouse.move() hangs when user moves mouse during automation
Issue:
page.mouse.move() freezes indefinitely when the real user tries to move the mouse while automation is running.
Code:
page.mouse.move(x, y) # Hangs here
Behavior:
- Script freezes at
mouse.move() - no error, no timeout
- Appears to happen when user physically moves mouse during automated mouse.move() call
- No exception thrown, requires manual kill
Expected:
Should complete or timeout gracefully even if user moves mouse.
page.mouse.move()hangs when user moves mouse during automationIssue:
page.mouse.move()freezes indefinitely when the real user tries to move the mouse while automation is running.Code:
Behavior:
mouse.move()- no error, no timeoutExpected:
Should complete or timeout gracefully even if user moves mouse.