Class: Watir::CheckBoxes

Inherits:
ElementCollections show all
Defined in:
lib/watir/collections.rb

Overview

this class accesses the check boxes in the document as a collection Normally a user would not need to create this object as it is returned by the Watir::Container#checkboxes method

Instance Method Summary collapse

Methods inherited from ElementCollections

#[], #each, #first, #get_length_of_input_objects, #initialize, #inspect, #last, #show, #to_s

Constructor Details

This class inherits a constructor from Watir::ElementCollections

Instance Method Details

#element_classObject



106
# File 'lib/watir/collections.rb', line 106

def element_class; CheckBox; end

#lengthObject

number of checkboxes

browser.checkboxes.length


109
110
111
# File 'lib/watir/collections.rb', line 109

def length
  get_length_of_input_objects("checkbox")
end