Sha256: b24d7947aa7eeb86b142a8e05f816bf2caf362ceb403ded72a21c2622c3520e9
Contents?: true
Size: 1.13 KB
Versions: 14
Compression:
Stored size: 1.13 KB
Contents
module Selenium module WebDriver module IPhone # # @api private # class Bridge < Remote::Bridge DEFAULT_URL = "http://#{Platform.localhost}:3001/wd/hub/" def initialize(opts = {}) warn 'The iPhone driver is deprecated - please use either http://appium.io/ or http://ios-driver.github.io/ios-driver/ instead' 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 def browser :iphone end def driver_extensions [ DriverExtensions::TakesScreenshot, DriverExtensions::HasInputDevices, DriverExtensions::HasWebStorage, DriverExtensions::HasLocation ] end def capabilities @capabilities ||= Remote::Capabilities.iphone end end # Bridge end # IPhone end # WebDriver end # Selenium
Version data entries
14 entries across 14 versions & 2 rubygems