I'm using a Chrome browser, but the error I'm getting is
"Unable to find chromedriver. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver."
I'm not sure where to place it on the path when developing in the cloud. Any help is much appreciated.
Here is the code in my controller
def getinformation
require 'watir'
browser = Watir::Browser.new
browser.goto('http://stackoverflow.com/')
@broswer = browser.title
end