jakehow (owner)

Revisions

gist: 18535 Download_button fork
public
Public Clone URL: git://gist.github.com/18535.git
Embed All Files: show embed
safariwatir_url.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
module Watir
    class Safari
        def url
            scripter.url
        end
    end
 
    class AppleScripter
        def url
            @document.URL.get
        end
    end
end