Displaying 2 results from an estimated 2 matches for "assert_visible".
2006 Feb 09
1
Alternative take on Selenium in Rails
...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''
select ''new_person_gender'', ''Male'...
2006 Feb 19
0
Selenium testing plugin
...lass 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''
select ''new_person_gender'', ''Male'...