class Selenium::WebDriver::Firefox::Extension
@api private
Constants
- NAMESPACE
Public Class Methods
new(path)
click to toggle source
# File lib/selenium/webdriver/firefox/extension.rb, line 30 def initialize(path) unless File.exist?(path) raise Error::WebDriverError, "could not find extension at #{path.inspect}" end @path = path @should_reap_root = false end
Public Instance Methods
write_to(extensions_dir)
click to toggle source
# File lib/selenium/webdriver/firefox/extension.rb, line 39 def write_to(extensions_dir) root_dir = create_root ext_path = File.join extensions_dir, read_id_from_install_rdf(root_dir) FileUtils.rm_rf ext_path FileUtils.mkdir_p File.dirname(ext_path), :mode => 0700 FileUtils.cp_r root_dir, ext_path FileReaper.reap(root_dir) if @should_reap_root end
Private Instance Methods
create_root()
click to toggle source
# File lib/selenium/webdriver/firefox/extension.rb, line 52 def create_root if File.directory? @path @path else unless Zipper::EXTENSIONS.include? File.extname(@path) raise Error::WebDriverError, "expected #{Zipper::EXTENSIONS.join(" or ")}, got #{@path.inspect}" end @should_reap_root = true Zipper.unzip(@path) end end
read_id_from_install_rdf(directory)
click to toggle source
# File lib/selenium/webdriver/firefox/extension.rb, line 65 def read_id_from_install_rdf(directory) rdf_path = File.join(directory, "install.rdf") doc = REXML::Document.new(File.read(rdf_path)) namespace = doc.root.namespaces.key(NAMESPACE) if namespace id_node = REXML::XPath.first(doc, "//#{namespace}:id") return id_node.text if id_node attr_node = REXML::XPath.first(doc, "//@#{namespace}:id") return attr_node.value if attr_node end raise Error::WebDriverError, "cannot locate extension id in #{rdf_path}" end