playwright icon indicating copy to clipboard operation
playwright copied to clipboard

[BUG] Cursor does not move visually

Open javierfh03 opened this issue 1 year ago • 0 comments

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:

chrome_cursor_error firefox_cursor_error

This may be a normal occurrence but I am reporting it in case there was no knowledge of it.

javierfh03 avatar May 19 '23 06:05 javierfh03