search for: click_and_wait

Displaying 4 results from an estimated 4 matches for "click_and_wait".

2008 Sep 29
3
rspec-ui overlap with cucumber?
Hi! I''m using cucumber + selenium and I love it. However I''m looking to add some methods (example: click_and_wait etc) to the lib. Therefore looked around a bit and I got two questions: Firstly about rspec-ui, I''m a little confused, does rspec-ui overlap with its propose with webrat with cucumber or I''m missing a point? Secondly, are there any plans to "officially" support seleniu...
2006 Sep 07
0
Dead easy Watir AND Selenium
...host", 4444, "*firefox", "http://www.google.no", 10000) @browser.start @browser.open(''http://www.google.no'') end specify "should find rspec''s home page" do @browser.type "name=q", "rspec" @browser.click_and_wait "name=btnG" @browser.is_text_present("rspec.rubyforge.org").should_be(true) end specify "should not find Ali G when I search for rspec" do @browser.type "name=q", "rspec" @browser.click_and_wait "name=btnG" @browser.is...
2006 Feb 09
1
Alternative take on Selenium in Rails
...#39;' type ''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...
2006 Feb 19
0
Selenium testing plugin
...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 ''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/.