Class: Selenium::WebDriver::IPhone::Bridge
- Inherits:
-
Remote::Bridge
- Object
- Remote::Bridge
- Selenium::WebDriver::IPhone::Bridge
- Defined in:
- lib/selenium/webdriver/iphone/bridge.rb
Constant Summary collapse
Constants inherited from Remote::Bridge
Instance Attribute Summary
Attributes inherited from Remote::Bridge
#context, #file_detector, #http
Instance Method Summary collapse
- #browser ⇒ Object
- #capabilities ⇒ Object
- #driver_extensions ⇒ Object
-
#initialize(opts = {}) ⇒ Bridge
constructor
A new instance of Bridge.
Methods inherited from Remote::Bridge
#acceptAlert, #addCookie, #clearElement, #click, #clickElement, #close, command, #contextClick, #create_session, #deleteAllCookies, #deleteCookie, #dismissAlert, #doubleClick, #dragElement, #elementEquals, #executeAsyncScript, #executeScript, #find_element_by, #find_elements_by, #get, #getActiveElement, #getAlert, #getAlertText, #getAllCookies, #getCapabilities, #getCurrentUrl, #getCurrentWindowHandle, #getElementAttribute, #getElementLocation, #getElementLocationOnceScrolledIntoView, #getElementSize, #getElementTagName, #getElementText, #getElementValue, #getElementValueOfCssProperty, #getPageSource, #getScreenshot, #getTitle, #getVisible, #getWindowHandles, #goBack, #goForward, #isElementDisplayed, #isElementEnabled, #isElementSelected, #mouseDown, #mouseMoveTo, #mouseUp, #quit, #refresh, #sendKeysToActiveElement, #sendKeysToElement, #sendModifierKeyToActiveElement, #session_id, #setAlertValue, #setElementSelected, #setImplicitWaitTimeout, #setScriptTimeout, #setVisible, #submitElement, #switchToDefaultContent, #switchToFrame, #switchToWindow, #upload
Methods included from BridgeHelper
#element_id_from, #parse_cookie_string, #unwrap_script_result
Constructor Details
#initialize(opts = {}) ⇒ Bridge
Returns a new instance of Bridge.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/selenium/webdriver/iphone/bridge.rb', line 8 def initialize(opts = {}) remote_opts = { :url => opts.fetch(:url, DEFAULT_URL), :desired_capabilities => opts.fetch(:desired_capabilities, capabilities), } remote_opts[:http_client] = opts[:http_client] if opts.has_key?(:http_client) super remote_opts end |
Instance Method Details
#browser ⇒ Object
19 20 21 |
# File 'lib/selenium/webdriver/iphone/bridge.rb', line 19 def browser :iphone end |
#capabilities ⇒ Object
30 31 32 |
# File 'lib/selenium/webdriver/iphone/bridge.rb', line 30 def capabilities @capabilities ||= Remote::Capabilities.iphone end |
#driver_extensions ⇒ Object
23 24 25 26 27 28 |
# File 'lib/selenium/webdriver/iphone/bridge.rb', line 23 def driver_extensions [ DriverExtensions::TakesScreenshot, DriverExtensions::HasInputDevices ] end |