Class: Opera
Instance Method Summary (collapse)
-
- (Opera) initialize(path = 'c:\Program Files\Opera\Opera.exe'))
constructor
A new instance of Opera.
- - (Object) setup
Methods inherited from Browser
#escaped_name, #host, #installed?, #linux?, #macos?, #name, #path, #runnable?, #supported?, #teardown, #to_s, #visit, #windows?
Constructor Details
- (Opera) initialize(path = 'c:\Program Files\Opera\Opera.exe'))
A new instance of Opera
2 3 4 |
# File 'lib/hanoi/browsers/opera.rb', line 2 def initialize(path = 'c:\Program Files\Opera\Opera.exe') @path = path end |
Instance Method Details
- (Object) setup
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/hanoi/browsers/opera.rb', line 6 def setup if windows? puts %{ MAJOR ANNOYANCE on Windows. You have to shut down Opera manually after each test for the script to proceed. Any suggestions on fixing this is GREATLY appreciated! Thank you for your understanding. } end end |