I'm new to Ruby so this might be a really dumb question. But we have this code working on an existing Ruby install PC.
def usr_OpenURL(strURL, strBrowserType)
if strBrowserType == "IE"
# Open Browser at the specified URL and Maximise
browser = Watir::Browser.start(strURL)
browser.waitForIE
browser.bring_to_front
browser.maximize
sleep($nSleepTime)
elsif strBrowserType == "Chrome"
browser = Watir::Browser.new :chrome
browser.goto strURL
sleep($nSleepTime)
else
puts "No Known Browser is Declared"
end
return browser
end
However installing the same version of Ruby on my pc and running the code is returning the error:
undefined method 'start' for Watir::Browser:Class (NoMethodError).
So I used irb to play around with it a bit.
If I do:
require "Watir"
browser = Watir::Browser.start("http://www.google.com")
I get the error, but if I do:
require "Watir"
browser = Watir::Browser.new
browser = Watir::Browser.start("http://www.google.com")
then its ok. It opens a new browser window at that url as expected.
Comparing the PCs I can see different versions of the watir, and watir-webdriver gems are installed - so not sure if something changed between versions.
The person who wrote this ruby code is no longer here - so I can't ask them why they're not doing a .new and Goto for IE.
Any ideas would be appreciated :) Thanks!
Update: I found this in watir-classic 3.2.0 gem. Thinking maybe that is the culprit.
Watir::Browser is now a class instead of a module - beware if you're monkey-patching.
