我正在尝试在IE上自动化我的应用程序,我想通过特定节点路由我的流量。我一直在谷歌搜索,找到一个适合我的情况的解决方案:
DC = webdriver.DesiredCapabilities.INTERNETEXPLORER.copy()
DC["proxy"]={
'proxyType': proxy.ProxyType.PAC,
'proxyAutoconfigUrl': self.pac_url,
"class":"org.openqa.selenium.Proxy",
"autodetect":False
}
self.driver= webdriver.Ie(executable_path=pathToIEdriver,capabilities=DC)