chore: remove console logs

This commit is contained in:
karishmas6
2024-04-20 00:48:35 +05:30
parent b4cb0568fb
commit 41ebb3b2aa

View File

@@ -4,7 +4,6 @@ async function scrapeData(url, selectors, waitForSeconds = 2) {
const scrapedData = [];
const crawler = new PlaywrightCrawler({
requestHandler: async ({ page, request }) => {
console.log('Request object:', request)
await page.goto(url);
await page.waitForTimeout(waitForSeconds * 1000);