What is Multi-Tab Scraping?
Multi-tab scraping is the practice of opening concurrent pages within a single browser instance or context to extract data. While it drastically reduces the memory overhead compared to launching separate headless browsers, it forces all tabs to share the same main thread, CPU resources, and session state. For scrapers, it's a high-risk optimization: push the tab count too high, and a single heavy DOM render will crash the entire instance, taking down dozens of in-flight extractions with it.