New fingerprint per new request with PlaywrightCrawler/Firefox ?
what I want to achieve:
- every request should have unique fingerprint - this is important!
- cookies, etc. not shared between requests
- PlaywrightCrawler
- no sessions - every request is independent, (no login or similar)
- Firefox
- performance/throughput is not a number one prio
At the moment I almost have this with the hack
retireBrowserAfterPageCount=2 in browserPoolOptions: this gives a unique fingerprint every two requests, which... isn't perfect (and starting a new browser instance so often looks strange)In this thread: crawlee-jsNew fingerprint per new page in browser-pool
a solution for browser pool (without crawler) was suggested.
I would like to have both: new fingerprint per request and PlaywrightCrawler.
Is it possible?
