Python selenium、未检测到的 chromedriver 不允许我更改指纹

问题描述 投票:0回答:1

使用未检测到的 chromedriver 时,我无法更改浏览器指纹,我尝试更改我的用户代理,但没有成功,未检测到的 chromedriver 是否由于某种原因阻止了它的发生?

将 unDetected_chromedriver 导入为 uc 导入时间

options = uc.ChromeOptions()
options.headless = False
driver = uc.Chrome(options=options,version_main=118)

# Changing my useragent fingerprints
options.add_argument("user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36")

driver.get('https://amiunique.org/fingerprint')

time.sleep(40)
python selenium-webdriver webdriver undetected-chromedriver
1个回答
0
投票

我想知道如何更改我的浏览器指纹以及未检测到的驱动程序是否阻止它发生

© www.soinside.com 2019 - 2024. All rights reserved.