Surprisingly, I couldn’t find a first step guide on how to setup Selenium WebDriver working with selenium-webdriver gem through google university. I suppose the gem needs to know where I store all those jar files to get started. How can I configure this?
Surprisingly, I couldn’t find a first step guide on how to setup Selenium WebDriver
Share
First you have to install the gem selenium-webdriver:
gem install selenium-webdriver
Then you can start your ruby program:
You can find more info:
about webdriver and ruby (all said above was an attempt to summarize it)
about the Ruby webdriver API
As you can see at a glance, the Webdriver API by itself has a different “style” of normal selenium-ruby programs… If you want to use webdriver and still continue to program with the Selenium-API, you should probably chech the Selenium2.0 Remote Server, as it seems that it will use Webdriver in a transparent way, while still mantaining the same known Selenium ruby Api
If I’m wrong with some part of the info, please correct me and we will all together make it clearer 🙂
PD: Best found info about relationship between Selenium and Webdriver was this blog post