Class: Watir::FormElement

Inherits:
Element
  • Object
show all
Defined in:
lib/watir/form.rb

Overview

Forms

Direct Known Subclasses

Form

Constant Summary

Constants inherited from Element

Element::TO_S_SIZE

Instance Attribute Summary

Attributes inherited from Element

#container

Attributes included from Container

#activeObjectHighLightColor, #page_container, #type_keys, #typingspeed

Instance Method Summary collapse

Methods inherited from Element

#<=>, #activeObjectHighLightColor, #after_text, #assert_enabled, #assert_exists, #attribute_value, #before_text, #click, #click!, #document, #enabled?, #exists?, #fire_event, #flash, #focus, #initialize, #inspect, #method_missing, #ole_object, #ole_object=, #parent, #text, #to_s, #type_keys, #typingspeed, #visible?

Methods included from Container

#area, #areas, #button, #buttons, #cell, #cells, #checkbox, #checkboxes, #dds, #divs, #dls, #dts, #element, #element_by_css, #elements, #ems, #file_field, #file_fields, #form, #forms, #frame, #frames, #hidden, #hiddens, #image, #images, #labels, #link, #links, #lis, #locate_all_elements, #locate_input_element, #locate_tagged_element, #log, #map, #maps, #modal_dialog, #popup, #pres, #ps, #radio, #radios, #row, #rows, #select_list, #select_lists, #set_container, #show_all_objects, #spans, #strongs, #table, #tables, #text_field, #text_fields, #wait

Constructor Details

This class inherits a constructor from Watir::Element

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Watir::Element

Instance Method Details

#form_methodObject



13
14
15
16
# File 'lib/watir/form.rb', line 13

def form_method
  assert_exists
  @o.invoke('method')
end

#method(arg = nil) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/watir/form.rb', line 18

def method(arg = nil)
  if arg.nil?
    form_method
  else
    super(arg)
  end
end

#nameObject



8
9
10
11
# File 'lib/watir/form.rb', line 8

def name
  assert_exists
  @o.getAttributeNode('name').value
end