Sha256: 72e3381d5595873701b4296a3b1d1d8ba13878ecb55ea2562efd738bc0360200
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 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 # # Returns true if the element is checked # @return [Boolean] # def set? assert_exists element_call { @element.selected? } end # # Unsets checkbox. # def clear set false end 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 def element_class CheckBox end end # CheckBoxCollection end # Watir
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.9.1 | lib/watir-webdriver/elements/checkbox.rb |
watir-webdriver-0.9.0 | lib/watir-webdriver/elements/checkbox.rb |