Sha256: c4ec495634a161a93d684bdd8edbfc40fc4119bea8e0a0bf7600beda728a9579
Contents?: true
Size: 393 Bytes
Versions: 18
Compression:
Stored size: 393 Bytes
Contents
module SitePrismDropdown extend ActiveSupport::Concern module ClassMethods def dropdown(dropdown_name, *find_args) section dropdown_name, *find_args do element :current, "button" element :menu, "ul.dropdown-menu" def select(text) self.current.click self.menu.find("li a", :text => text).click end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems