Method: Webrat::Locators::FieldLabeledLocator#matching_labels

Defined in:
lib/webrat/core/locators/field_labeled_locator.rb

#matching_labelsObject



13
14
15
16
17
18
19
# File 'lib/webrat/core/locators/field_labeled_locator.rb', line 13

def matching_labels
  matching_label_elements.sort_by do |label_element|
    text(label_element).length
  end.map do |label_element|
    Label.load(@session, label_element)
  end
end