Sha256: 9f46b613b342eebcb3cbde5f8a736fb12a3edd98c2209508d993fdfcf6a6713b
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 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_method :check, :set # # Returns true if the element is checked # @return [Boolean] # def set? element_call { @element.selected? } end alias_method :checked?, :set? # # Unsets checkbox. # def clear set false end alias_method :uncheck, :clear end # CheckBox module Container def checkbox(*args) CheckBox.new(self, extract_selector(args).merge(tag_name: "input", type: "checkbox")) end def checkboxes(*args) CheckBoxCollection.new(self, extract_selector(args).merge(tag_name: "input", type: "checkbox")) end end # Container class CheckBoxCollection < InputCollection end # CheckBoxCollection end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | lib/watir/elements/checkbox.rb |