playwright
playwright copied to clipboard
[BUG] Cursor does not move visually
Context:
- Playwright Version: 1.32.0
- Operating System: Windows 10
- Python version: 3.11.2
- Browser: Chrome and Firefox
Code Snippet
from playwright.async_api import async_playwright
async with async_playwright() as p:
browser = await p.chromium.launch()
page = await browser.new_page()
await page.goto("https://www.google.com")
await page.locator("#APjFqb").hover()
await browser.close()
Describe the bug
When i use the hover function my cursor does not move visually, but it seems that it does move, as the tooltip of the element I want to move to is displayed and also the cursor changes if the field is a text field:
This may be a normal occurrence but I am reporting it in case there was no knowledge of it.