ruby – 如何覆盖类方法

前端之家收集整理的这篇文章主要介绍了ruby – 如何覆盖类方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想重写方法Selenium :: WebDriver.for.这是我试过的:
module SeleniumWebDriverExtension
  def self.for(browser,*args)
    if browser != :phantomjs
      super(browser,*args)
    else
      options = {
          "phantomjs.cli.args" => ["--ssl-protocol=tlsv1"]
      }
      capabilities = Selenium::WebDriver::Remote::Capabilities.phantomjs(options)
      super(browser,desired_capabilities: capabilities)
    end
  end
end

Selenium::WebDriver.prepend(SeleniumWebDriverExtension)

但是当调用Selenium :: Webdriver.for(:phantomjs)时出现错误.

NoMethodError: super: no superclass method `for' for Selenium::WebDriver::Driver:Class

如何从重写方法调用原始方法

解决方法

module SeleniumWebDriverExtension
  def for(browser,*args)
    ...
  end
end

Selenium::WebDriver.singleton_class.prepend(SeleniumWebDriverExtension)
原文链接:https://www.f2er.com/ruby/267428.html

猜你在找的Ruby相关文章