找出WebDriver使用的代理服务器

时间:2018-07-23 16:32:06

标签: python selenium

我使用代理运行selenium WebDriver。

chrome_options.add_argument('--proxy-server="'94.242.58.108:1448'"
driver = Chrome(chrome_options=chrome_options)

驱动程序知道它现在正在使用哪个代理服务器。 您能告诉我如何找出使用过的代理服务器吗?

我在另一个功能中需要此信息。

1 个答案:

答案 0 :(得分:1)

请参阅Java文档http://seleniumhq.github.io/selenium/docs/api/java/org/openqa/selenium/Proxy.html  我们有getHttpProxy()来检索代理。

Proxy p=new Proxy(); // used at the start to set proxy and pass to chrome options and driver

System.out.println(p.getHttpProxy()); // to get proxy when required.