我有一个问题,对于某些网站,使用Selenium和browsermob进行测试会变得非常缓慢。这是我当前用于设置服务器和代理的代码:
server = Server(path_browsermob)
server.start()
proxy = server.create_proxy()
co = webdriver.ChromeOptions()
co.add_argument('--proxy-server={host}:{port}'.format(host='localhost', port=proxy.port))
driver = webdriver.Chrome(path_driver, chrome_options=co)
我已经读过一种加快测试速度的方法是使用EC证书而不是RSA。但是,如何使用上面的代码激活ECC?
答案 0 :(得分:0)
在学习了带有浏览器代理和SSL证书的“问题”后,我也遇到了同样的问题。
在browsermob-proxy python库中四处浏览后,看起来好像在创建代理时将任何extra parameters传递给了URL。
这样,您应该可以将API documentation中概述的任何参数传递到create_proxy()中。
这是我的代码段(尽管,我不确定如何查询代理以查看其实际设置)。
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from browsermobproxy import Server
#Create proxy server
bmp_server_opts = {"port": 8080}
bmp_server = Server("browsermob-proxy-2.1.4/bin/browsermob-proxy", options = bmp_server_opts)
bmp_server.start()
time.sleep(1)
proxy_server = bmp_server.create_proxy({"useEcc": True, "trustAllServers": True})
time.sleep(1)
selenium_proxy = proxy_server.selenium_proxy()
#Create Firefox options
firefox_opts = webdriver.FirefoxOptions()
firefox_profile = webdriver.FirefoxProfile()
firefox_opts.set_headless()
firefox_profile.set_proxy(selenium_proxy)
#Fire up a Firefox browser
firefox_browser = webdriver.Firefox(firefox_profile = firefox_profile, firefox_options = firefox_opts)
wait_load = WebDriverWait(firefox_browser, 10)
proxy_server.new_har("103398", options = {'captureHeaders': True, "captureContent": True})
尽管即使将useEcc设置为true仍然存在一些问题,但是我最终添加了trustAllServers,它忽略了一起进行ssl检查,但是我不确定如果您需要接近真实的用户体验,这将是正确的方法。无论哪种情况,我的SSL / TLS连接仍然很慢。