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