Selenium-webdriver系列教程(16)————为firefox设置代理_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > Selenium-webdriver系列教程(16)————为firefox设置代理

Selenium-webdriver系列教程(16)————为firefox设置代理

 2012/3/20 13:58:38  nbkhic  程序员俱乐部  我要评论(0)
  • 摘要:下面的代码可以帮助你实现firefox测试运行时代理配置的功能。大概的思路是通过设置profile对象来进行配置。profile=Selenium::WebDriver::Firefox::Profile.new#新建了url为proxy.org,端口为8080的htpp代理proxy=Selenium::WebDriver::Proxy.new(:http=>"proxy.org:8080")profile.proxy=proxydriver=Selenium::WebDriver
  • 标签:Web 代理 FireFox 教程
下面的代码可以帮助你实现firefox测试运行时代理配置的功能。大概的思路是通过设置profile对象来进行配置。

profile = Selenium::WebDriver::Firefox::Profile.new
# 新建了url为proxy.org,端口为8080的htpp代理
proxy = Selenium::WebDriver::Proxy.new(:http => "proxy.org:8080")
profile.proxy = proxy

driver = Selenium::WebDriver.for :firefox, :profile => profile
发表评论
用户名: 匿名