Hi…
This is one of the methods in Watir Webdriver
@browser.goto(url)
def goto(uri)
uri = "http://#{uri}" unless uri =~ URI.regexp
@driver.navigate.to uri
run_checkers
url
end
The url i m sending is “https://…”
But after the method is called it redirects to http url.
I want to test it remains on “https://”
Any suggesstions.