ruby – 在Selenium中阻止或重定向请求到特定路径或域

我正在通过Capybara使用Selenium来自动化使用Cucumber运行的测试.我正在加载一些引用CDN内容的页面.我没有兴趣创建超过必要的请求并毫无理由地击中CDN.我想配置Selenium以某种方式忽略对该域的请求.

Celerity有这样的方法:

Browser.ignore_pattern("regex pattern")

这将忽略所有匹配的请求.我想以某种方式复制这个功能.有没有办法覆盖DNS转到0.0.0.0或其他一些方式来配置内部Selenium代理?

最佳答案 您应该能够使用在
https://github.com/jarib/browsermob-proxy-rb找到的browsermob-proxy-rb gem将您的CDN列入黑名单.

以下内容基本上是从github列表的README中窃取的:

require 'selenium/webdriver'
require 'browsermob/proxy'

server = BrowserMob::Proxy::Server.new("/path/to/download/browsermob-proxy") #=> #<BrowserMob::Proxy::Server:0x000001022c6ea8 ...>
server.start

proxy = server.create_proxy #=> #<BrowserMob::Proxy::Client:0x0000010224bdc0 ...>

profile = Selenium::WebDriver::Firefox::Profile.new #=> #<Selenium::WebDriver::Firefox::Profile:0x000001022bf748 ...>

# This is the line I added
proxy.blacklist(/path.to.CDN.com/)

profile.proxy = proxy.selenium_proxy

driver = Selenium::WebDriver.for :firefox, :profile => profile

driver.get "http://www.yoursite.com"
点赞