Sha256: 4960f84a4be9e8e0be0c9667ab84453f2c583f8486828fda004fd0bfcf4bb7ab
Contents?: true
Size: 725 Bytes
Versions: 28
Compression:
Stored size: 725 Bytes
Contents
require 'test_helper' class FillInTest < ActionController::IntegrationTest test "should fill in text field by name" do visit fields_path fill_in "field_by_name", :with => "value" end test "should fill in text field by name, rails naming lh257" do visit fields_path fill_in "rails[naming]", :with => "value" end test "should fill in text field by id" do visit fields_path fill_in "field_by_id", :with => "value" end test "should fill in text field by label via id" do visit fields_path fill_in "FieldByLabelId", :with => "value" end test "should fill in text field by label with special characters" do visit fields_path fill_in "[Field]:", :with => "value" end end
Version data entries
28 entries across 28 versions & 14 rubygems