Sha256: 9f2af4504a411452d43658e58dc7659708be1e38c043ef5c3d4a43439748eaf6
Contents?: true
Size: 324 Bytes
Versions: 8
Compression:
Stored size: 324 Bytes
Contents
module Druid module Elements class HiddenField < Element def click raise "click is not available on hidden field element with watir" end def self.finders super + [:text, :value] end end Druid::Elements.type_to_class[:hidden] = Druid::Elements::HiddenField end end
Version data entries
8 entries across 8 versions & 1 rubygems