Displaying 2 results from an estimated 2 matches for "submit_add_new_person".
2006 Feb 09
1
Alternative take on Selenium in Rails
...''new_person_last_name'', ''the Cat''
select ''new_person_gender'', ''Male''
type ''new_person_creation_source'', ''The Planet Zorg''
click_and_wait ''submit_add_new_person'', 4
assert_contains ''person_name'', ''Pixel the Cat''
end
end
This will be turned into a Selenium test suite when you run:
rake selenium
Anyway, enough for the forum. Check out the plugin if you''re interested.
It''s still...
2006 Feb 19
0
Selenium testing plugin
...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 ''person_name'', ''Pixel the Cat''
end
end
100% Ruby and proud of it ;)
Comments/feedback/patches welcome.
-Jonny.
--
Posted via http://www.ruby-forum.com/.