当前位置:   article > 正文

使用selenium访问网页额外跳出弹窗_selenium交互metamask

selenium交互metamask

说明

在使用selenium借助chromedriver访问网页的时候,突然莫名其妙弹出个别奇奇怪怪的网页,虽然不会因其报错或者异常,但看起来还是很不舒服,仔细研究了一下,UA头的设置错误会导致这个问题。

正确设置方式

from selenium.webdriver.chrome.options import Options
from selenium import webdriver
import time


chrome_options = Options()
# chrome_options.add_argument('--headless')       # 关闭可视化
chrome_options.add_argument('--disable-gpu')       # 禁用gpu加速
chrome_options.add_argument("--mute-audio")         # 静音

chrome_options.add_argument("User-Agent='Opera/8.0 (Windows NT 5.1; U; en)'")

chrome_options.add_experimental_option('excludeSwitches', ['enable-automation'])
bro = webdriver.Chrome(executable_path='./driver/chromedriver.exe', options=chrome_options)
bro.maximize_window()

bro.execute_cdp_cmd('Page.addScriptToEvaluateOnNewDocument', {'sou\
rce': 'Object.defineProperty(navigator, "webdriver", {get: () => undefined})'})

bro.get("https://www.baidu.com/")
time.sleep(10)
bro.quit()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/849809
推荐阅读
相关标签
  

闽ICP备14008679号