You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey @pooneh-nb ! Sorry for a late response. crawlerConductor can't currently do it, but a single crawler can. You have to create one non-incognito context and reuse it via browserContext param to crawl multiple sites. Sth like this:
constbrowser=/*create browser*/constloggedInContext=browser.defaultBrowserContext();// data between crawls will not be clearedconstdata1=awaitcrawler(newURL('https://example.com'),{browserContext: loggedInContext});constdata2=awaitcrawler(newURL('https://example.com'),{browserContext: loggedInContext});…
Hi there,
I'm wondering if "logged-in crawls" can be done using TrackerRadar. The crawler needs to preserve logged-in status to Facebook/Google.
The text was updated successfully, but these errors were encountered: