Replies: 2 comments 1 reply
-
How to Switch from Playwright Login to HTTP Crawler After Cookie Acquisition? |
Beta Was this translation helpful? Give feedback.
-
Hello @kwdiwt and thank you for your interest in Crawlee! If you don't need to use a crawler = HttpCrawler({
// ...
sessionPoolOptions: {
sessionOptions: {
cookieJar: {
"yourCookie": "value"
} // this can be a toughcookie.CookieJar instance as well
}
}
})
await crawler.run() If you need to perform the login for each new session (perhaps to avoid getting blocked), you can use the |
Beta Was this translation helpful? Give feedback.
-
I'm working on a web scraping project that requires both browser automation and direct HTTP requests. Could the maintainers suggest best practices for mixing Playwright-based page handling with regular HTTP requests in Crawlee?
Beta Was this translation helpful? Give feedback.
All reactions