Class: CapybaraPageObject::FormElement

Inherits:
Element
  • Object
show all
Defined in:
lib/capybara_page_object/elements/form_element.rb

Instance Attribute Summary

Attributes inherited from Element

#element, #page

Instance Method Summary collapse

Methods inherited from Element

#attribute, #class, #enabled?, #focus, #html, #initialize, #method_missing, #native, #parent, #respond_to_missing?, #scroll_into_view, #within

Constructor Details

This class inherits a constructor from CapybaraPageObject::Element

Dynamic Method Handling

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

Instance Method Details

#submitObject



4
5
6
7
8
# File 'lib/capybara_page_object/elements/form_element.rb', line 4

def submit
  Capybara.current_session.within(element) do
    first(:css, "input[type='submit']").click
  end
end