Skip to content

Tag: puppeteer

Javascript don’t want to use await

I have an async function like that: When I call this method, I am calling it like that: It works well in this way. But I don’t want to use the await keyword when calling this method. If I remove the await keyword, it waits forever in this line: await page.setRequestInterception(true); It should work on …

Puppeteer , bringing back blank array

I’m trying to grab products from ebay and open them on amazon. So far, I have them being searched on amazon but I’m struggling with getting the products selected from the search results. Currently its outputting a blank array and im not sure why. Have tested in a separate script without the grabTi…