我正在尝试使用FF代理配置文件通过Selenium Webdriver加载网页。
网站加载正常,但所有其他操作(例如登录等)都非常慢。这会导致测试超时
这就是我尝试设置FF代理的方式
ffProfile.setPreference("dom.max_script_run_time", 120);
ffProfile.setPreference("dom.max_chrome_script_run_time", 120);
ffProfile.setPreference("network.proxy.type", 1);
ffProfile.setPreference("network.proxy.http", "proxyhost");
ffProfile.setPreference("network.proxy.http_port", proxyport);
当我从具有代理集的本地FF浏览器访问网站时,响应很好。但是当我通过selenium webdriver访问时,该网站的响应速度很慢。