Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find documentation for Selenium WebDriver in Ruby [closed]

Could anyone point me to useful documentation sites for writing selenium webdriver scripts with Ruby language?

I am referring link 'http://docs.seleniumhq.org/docs' but also need other site.

like image 273
Gitanjali Avatar asked Jul 15 '13 11:07

Gitanjali


2 Answers

I would recommend those looking to learn Ruby's Selenium WebDriver web bindings to search Google, look at the latest updated docs.

Also, use solid tools like Elemential Selenium to learn new tips and tricks, follow other users of SWD on Twitter, and most importantly, read other people's code. You can do this easily by searching on Github for "gem 'selenium-webdriver'". I learned some of the best ways to code and program in Ruby and Selenium WebDriver by reading the code for Capybara, Watir-Webdriver, Page-Object, etc.

like image 67
bbbco Avatar answered Oct 19 '22 23:10

bbbco


Here is best doc where you can find all classes and methods (see right top corner of the page):

http://rubydoc.info/gems/selenium-webdriver/2.2.0/

like image 37
Alpha Avatar answered Oct 20 '22 00:10

Alpha