python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Evaluation failed: TypeError: Cannot read properties of null (reading 'firstElementChild')
I'm trying to trigger click event but in Ubuntu server it is not working.
....
await page.evaluate(() => {
document.querySelector(".phone").firstElementChild.click();
});
.....
...

Areg Nikoghosyan
Votes: 0
Answers: 1
Failed to launch the browser process! Ubuntu
Puppeter not working on Ubuntu server.
This is my code.
const browser = await puppeteer.launch({
args: ["--no-sandbox", "--disable-setuid-sandbox", "--disable-gpu"...

Areg Nikoghosyan
Votes: 0
Answers: 3
How do i click in a div class using puppeteer?
I'm trying to click in a button but i only have the class
name, i'm trying to use page.click, but never work so i try to add waitForSelector and always gives me time out, my code is very poor i'm just...

José Otavio
Votes: 0
Answers: 2
Looping through id's in puppeteer
let scrapeProduct = async (url) => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto(url);
for(let i = 0;i < 10; i++) {
co...
yamers
Votes: 0
Answers: 1