tracks/test/selenium/project_detail/in_place_edit_name.rsel
Eric Allen 96f510abd4 ALL SELENIUM TESTS PASSING!!
Caught a couple of things that I had to fix plus a handful of broken tests. This is the first time in forever that we have a fully successful selenium suite.
2009-10-13 22:34:37 -04:00

13 lines
331 B
Text

setup :fixtures => :all
login :as => 'admin'
open "/projects/1"
click "project_name"
wait_for_element_present "css=#project_name form input"
type "css=#project_name form input", "Test Foo"
click "css=#project_name form button"
wait_for_text "project_name", "Test Foo"
open "/projects/1"
wait_for_text "project_name", "Test Foo"