from selenium.webdriver import Chrome
from selenium.webdriver import ChromeOptions
option = ChromeOptions()
option.add_experimental_option('excludeSwitches', ['enable-automation'])
driver = Chrome(options=option)
driver.get('https://zhuanlan.zhihu.com/c_1047791597869199360')  

相关文章:

  • 2022-02-08
  • 2021-11-19
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2021-08-10
  • 2022-12-23
  • 2022-03-04
  • 2021-11-19
  • 2021-11-27
  • 2021-06-08
相关资源
相似解决方案