I have an array of url strings (i.e. "http://www.cnn.com") which I want to iterate through and open in Safari using watir.
urlArray.each do |url|
browser.goto(url)
end
will open the first page, but it never proceeds to the next pages in the array.
Any ideas on what's going on?