Displaying 2 results from an estimated 2 matches for "new_person_first_nam".
Did you mean:
new_person_first_name
2006 Feb 09
1
Alternative take on Selenium in Rails
...selenium_test
fixtures :people, :households
def setup
open ''/person/view/1''
end
def test_add_new_person
click ''add_new_person_link''
assert_visible ''add_new_person''
type ''new_person_first_name'', ''Pixel''
type ''new_person_last_name'', ''the Cat''
select ''new_person_gender'', ''Male''
type ''new_person_creation_source'', ''The...
2006 Feb 19
0
Selenium testing plugin
...up
open :controller => ''person'', :action => ''view'', :id => 1
end
def test_add_new_person
click ''add_new_person_link''
assert_visible ''add_new_person''
type ''new_person_first_name'', ''Pixel''
type ''new_person_last_name'', ''the Cat''
select ''new_person_gender'', ''Male''
click_and_wait ''submit_add_new_person''
assert_text...