A newbie question on Selenium for Ruby. What's the difference between "gem install selenium" and "gem install Selenium"? I'm trying to figure out which one I should install.
+1
A:
I always used:
$ gem install selenium-client
I think that's the official one, but I can't find a place where it says this.
Once you installed it, all you have to add to your tests is:
require "test/unit"
require "rubygems"
gem "selenium-client", ">=1.2.16"
require "selenium/client"
class ExampleTest < Test::Unit::TestCase
attr_reader :browser
def setup
@browser = Selenium::Client::Driver.new(...
Santi
2009-09-08 14:01:33
+2
A:
Hey guys,
we are interested in the same question? What should we take as selenium gem to use it with ruby? The version from the github?
http://github.com/ph7/selenium-client/
or this library:
Denis
2009-10-27 15:19:25