-
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? |
Beta Was this translation helpful? Give feedback.
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) |
Beta Was this translation helpful? Give feedback.
-
Confused, I meant how to emulate the fingerprint not related to location such as canvas etc |
Beta Was this translation helpful? Give feedback.
You could try using multiple proxy servers to vary things up.
You'll have to supply your own proxy config for that to work.