from selenium.webdriver import Chrome, ChromeOptions
options = ChromeOptions()
options.add_experimental_option("excludeSwitches", ["enable-automation", 'enable-logging'])
options.add_experimental_option('useAutomationExtension', False)
options.add_argument('--disable-blink-features=AutomationControlled')
driver = Chrome(options=options)
driver.get("https://jiapu.library.sh.cn/")
print(driver.page_source)`
When I open this website using the tool, even if I hide feature detection, it still doesn’t help
I tried everything I knew, but it didn’t work.
New contributor
debiao fan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.