Method: FormObjectModel::Form#submit

Defined in:
lib/form_object_model/form.rb

#submitObject



96
97
98
99
100
101
102
# File 'lib/form_object_model/form.rb', line 96

def submit
  raise "FormObjectModel#submit_button called before submit_button locator was set" unless @submit_button
  page.click_button @submit_button
  if @after_submit_block
    @after_submit_block.call(page)
  end
end