Are there any implementations of all the nifty Selenium on Rails methods like wait_for_visible
, assert_not_text_present
, ... for the ruby driver of Selenium RC?
If not, how would I go about implementing something like wait_for_visible?
Are there any implementations of all the nifty Selenium on Rails methods like wait_for_visible
, assert_not_text_present
, ... for the ruby driver of Selenium RC?
If not, how would I go about implementing something like wait_for_visible?
I solved my own problem.
I found the official ruby client at the Git Hub Repository
I wrote this solution so you can just
require
this code then you can use all the usefulwait_for_*, assert_*, assert_not_*, wait_for_not_*, verify_*, and verify_not_*
commands.