On installing Ruby & Watir recently to look at the company's web automation project I discovered that a bunch of methods being called have been deprecated. I'm struggling to find a good reference as to what to change the code to.
Is there a good reference (have searched a lot of watir site/manual/faq and not really found what to use instead - especially for the radio button checking if its set). Unless someone can confirm the below.
Changed:
browser = Watir::Browser.start(strURL)
browser.waitForIE
To:
browser = Watir::Browser.new
browser.goto strURL
browser.wait
Changed:
.select_list(:id, strHtmlId).getSelectedItems[0].to_s
To:
select_list(:id, strHtmlId).value
Changed:
radio(:id => strHtmlId).isSet?
To:
radio(:id => strHtmlId).set?
