Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

308
Views
Puppeteer is not moving the mouse while using it inside docker container

I'm trying to move the mouse with Puppeteer while running it inside a docker container while recording with ffmpeg the screen.

The issue is that every time I record with ffmpeg the mouse cursor is showing in the recording always in the center of the screen.

In order to remove it I tried to move the mouse away with page.mouse.move() and page.mouse.click().

I tried also page.hover() and tried to use in all this cases each combination of headless true and false.

This is how I set up puppeteer (original code without headless option used):

browser = await puppeteer.connect({
            'browserWSEndpoint': endpoint,
            'defaultViewport': null
        });

const pages = await browser.pages();
const page = pages[0];
await page.goto(url);
console.log("Making page active.");
await page.bringToFront();

I add that if I connect to the container with VNC Viewer I'm perfectly able to move the cursor manually.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Resolved by installing xdotool with the docker image and then on the script using:

console.log("Hiding mouse")
let xdotool = spawn("xdotool", [
    'mousemove',
    '0',
    '0'
]);
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!