search for: add_new_person

Displaying 2 results from an estimated 2 matches for "add_new_person".

2006 Feb 09
1
Alternative take on Selenium in Rails
...tests in the same way that unit and functional tests are written. So, you end up with test classes such as: class PersonSeleniumTest < Test::Unit::TestCase 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'...
2006 Feb 19
0
Selenium testing plugin
...on''t know, this plugin allows you to write Selenium tests like this: class PersonSeleniumTest < Test::Unit::TestCase fixtures :people def setup 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'...