Sha256: 33c7e8dbd377b1153abe0b2b778a40b914831532e6eb8b608062b2d3a5315896
Contents?: true
Size: 724 Bytes
Versions: 29
Compression:
Stored size: 724 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
29 entries across 29 versions & 11 rubygems