硒线运行非常慢



Selenium wire对我来说运行非常慢,运行代码需要30秒。我正在使用硒线和未检测到的chromedive.v2我使用的设置是:

seleniumwire_options = {
'proxy': {
'http': 'http://user:pass@host:port',
'https': 'https://user:pass@host:port',
},
'disable_encoding': True
}
option = ChromeOptions()
option.headless = True
option.add_argument("--disable-gpu")
option.add_argument("--incognito")
option.add_argument("--headless")
driverChrome(use_subprocess=True,options= option, seleniumwire_options = seleniumwire_options)

需要注意的是,我只想使用硒线作为代理。

试试这个:

options = {
'disable_capture': True  # Don't intercept/store any requests
}
driver = webdriver.Chrome(seleniumwire_options=options)

https://github.com/wkeeling/selenium-wire#limiting-请求捕获

相关内容

  • 没有找到相关文章

最新更新