|
What other means of anti fingerprint can I implement that are randomized and emulated randomly when using UC that will help in making the fingerprint completely random when having a high number of threads on the same site but want each thread to look completely different from the first? |
Answered by
mdmintz
Dec 29, 2023
Replies: 2 comments 3 replies
|
You could try using multiple proxy servers to vary things up. from parameterized import parameterized
from seleniumbase import BaseCase
BaseCase.main(__name__, __file__, "-n3")
class ProxyTests(BaseCase):
@parameterized.expand(
[
["host1:port1"],
["host2:port2"],
["host3:port3"],
]
)
def test_multiple_proxies(self, proxy_string):
self.get_new_driver(
undetectable=True, proxy=proxy_string, multi_proxy=True
)
self.driver.get("https://browserleaks.com/webrtc")
self.sleep(30) |
0 replies
Answer selected by
mdmintz
Confused, I meant how to emulate the fingerprint not related to location such as canvas etc |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


You could try using multiple proxy servers to vary things up.
You'll have to supply your own proxy config for that to work.