Hi all,
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:
https://discord.com/channels/801163717915574323/1060467542616965150a solution for browser pool (without crawler) was suggested.
I would like to have both: new fingerprint per request and PlaywrightCrawler.
Is it possible?