A port of puppeteer running on Deno

page.hover seemingly not working#42

Closed
Opened 1/16/20221 commentsby kemicofa
kemicofa

To reproduce: https://github.com/kemicofa/deno-puppeteer-hover-example I'm trying to cause a color change on hover over one of the buttons on my website From: <img width="327" alt="Screenshot 2022-01-16 at 15 32 40" src="https://user-images.githubusercontent.com/45143945/149664313-c9db453f-e901-4be3-9a3d-161d16acd337.png"> To: <img width="322" alt="Screenshot 2022-01-16 at 15 33 19" src="https://user-images.githubusercontent.com/45143945/149664333-ed3f829c-313a-4ee7-b27e-69d5edaacf22.png"> However, through deno-puppeteer the color stays the same using the following code: ```javascript const browser = await puppeteer.launch(); const page = await browser.newPage(); const url = 'https://sweet-snake-49.deno.dev'; await page.goto(url); await page.setViewport({ width: 1600, height: 1200 }); await page.hover('#left'); await page.screenshot({ path: Deno.cwd() + '/example.png' }); await browser.close(); ```

AI Analysis

This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by kemicofa and has received 1 comments.

Add a comment
Comment form would go here