I have the problem that the Apify.utils.enqueueLinks
function adds also downloads or image links to the requestQueue.
Actually i tried to solve it this way:
handlePageFunction: async({
request, response, page
}) => {
await page.waitFor(settings.waitForPageload)
console.log(`Get Data from:: ${request.url}`)
if(response.headers()['content-type'].includes('html')) {
...do all stuff here
}
What would be a better solution for that?