Module: Selenium::WebDriver::Safari
| Relationships & Source Files | |
| Namespace Children | |
|
Modules:
| |
|
Classes:
| |
| Defined in: | rb/lib/selenium/webdriver/safari.rb, rb/lib/selenium/webdriver/safari/driver.rb, rb/lib/selenium/webdriver/safari/features.rb, rb/lib/selenium/webdriver/safari/options.rb, rb/lib/selenium/webdriver/safari/service.rb |
Class Attribute Summary
- .path rw
- .path=(path) rw
- .technology_preview readonly
- .technology_preview? ⇒ Boolean readonly
- .use_technology_preview rw
Class Method Summary
Class Attribute Details
.path (rw)
[ GitHub ]# File 'rb/lib/selenium/webdriver/safari.rb', line 48
def path @path ||= nil end
.path=(path) (rw)
[ GitHub ]# File 'rb/lib/selenium/webdriver/safari.rb', line 43
def path=(path) Platform.assert_executable(path) @path = path end
.technology_preview (readonly)
[ GitHub ]# File 'rb/lib/selenium/webdriver/safari.rb', line 31
def technology_preview '/Applications/Safari Technology Preview.app/Contents/MacOS/safaridriver' end
.technology_preview? ⇒ Boolean (readonly)
[ GitHub ]
# File 'rb/lib/selenium/webdriver/safari.rb', line 39
def technology_preview? use_technology_preview end
.use_technology_preview (rw)
[ GitHub ]# File 'rb/lib/selenium/webdriver/safari.rb', line 29
attr_accessor :use_technology_preview
Class Method Details
.technology_preview!
[ GitHub ]# File 'rb/lib/selenium/webdriver/safari.rb', line 35
def technology_preview! @use_technology_preview = true end