Displaying 1 result from an estimated 1 matches for "seleniumtest".
Did you mean:
selenium_test
2010 Jun 08
0
How to use Selenium RC in Rails
Hi,
I am trying to use Selenium RC in my rails application. I first
install selenium RC ruby client (>gem install selenium-client). Then
create a "selenium_test.rb" in libs folder. In the file, I create a
class "SeleniumTest".
# libs/selenium_test.rb
require "selenium-client"
class SeleniumTest
attr_reader :browser
def initialize
@browser = Selenium::Client::Driver.new \
:host => "localhost",
:port => 4444,
:browser => "*firefox",
:...