Sha256: 1e3f0988097d1ff097a3db142665b8a97cee3434ccc07d029f3f3aa8569edcb8
Contents?: true
Size: 1.09 KB
Versions: 7
Compression:
Stored size: 1.09 KB
Contents
module Watir class CheckBox < Input # # Sets checkbox to the given value. # # @example # checkbox = browser.checkbox(id: 'new_user_interests_cars') # checkbox.set? #=> false # checkbox.set # checkbox.set? #=> true # checkbox.set(false) # checkbox.set? #=> false # # @param [Boolean] bool # def set(bool = true) set? == bool ? assert_enabled : click end alias check set # # Returns true if the element is checked # @return [Boolean] # def set? element_call { @element.selected? } end alias checked? set? # # Unsets checkbox. # def clear set false end alias uncheck clear end # CheckBox module Container def checkbox(opts = {}) CheckBox.new(self, opts.merge(tag_name: 'input', type: 'checkbox')) end def checkboxes(opts = {}) CheckBoxCollection.new(self, opts.merge(tag_name: 'input', type: 'checkbox')) end end # Container class CheckBoxCollection < InputCollection end # CheckBoxCollection end # Watir
Version data entries
7 entries across 7 versions & 1 rubygems