diff --git a/maxun-core/src/interpret.ts b/maxun-core/src/interpret.ts index 973211dc..e81cb4eb 100644 --- a/maxun-core/src/interpret.ts +++ b/maxun-core/src/interpret.ts @@ -441,13 +441,6 @@ export default class Interpreter extends EventEmitter { return allResults; } - // Wait a bit before next iteration to ensure content is loaded - await page.waitForTimeout(1000); - - // Scrape the current page after scrolling/clicking - const pageResults = await page.evaluate((cfg) => window.scrapeList(cfg), config); - allResults = allResults.concat(pageResults); - if (config.limit && allResults.length >= config.limit) { allResults = allResults.slice(0, config.limit); break;