当前位置:   article > 正文

selenium 浏览器检测 绕过_excludeswitches selenium

excludeswitches selenium
  1. from selenium.webdriver import Chrome
  2. import time
  3. from selenium import webdriver
  4. option = webdriver.ChromeOptions()
  5. option.add_experimental_option(
  6. 'excludeSwitches',
  7. ['enable-automation'])
  8. driver = webdriver.Chrome(chrome_options=option)
  9. driver.maximize_window()
  10. driver.get('http://www.porters.vip/features/webdriver.html')
  11. #定位按钮并点击
  12. driver.find_element_by_css_selector('.btn.btn-primary.btn-lg').click()
  13. #定位到文章内容元素
  14. elements = driver.find_element_by_css_selector('#content')
  15. time.sleep(1)
  16. print(elements.text)
  17. driver.close()

以开发者模式运行selenium

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/89870
推荐阅读
相关标签
  

闽ICP备14008679号