Selenium-webdriver系列教程(14)————如何在启动firefox时加载扩展
有时候我们需要在使用firefox测试时启动firebug,这时候就可以用到下面的代码
require 'rubygems'require 'selenium-webdriver'profile = Selenium::WebDriver::Firefox::Profile.newprofile.add_extension 'where/the/extensions/locate/firebug.xpi'dr = Selenium::WebDriver.for :firefox, :profile => profile