Sha256: cb9102a766017f05b84ff6711cd24cc85fa28c96ec2b32b71f2f537145e87028
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
module Selenium module WebDriver module Android class Bridge < Remote::Bridge DEFAULT_URL = "http://#{Platform.localhost}:8080/wd/hub/" 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 def browser :android end def driver_extensions [ DriverExtensions::TakesScreenshot, DriverExtensions::Rotatable, DriverExtensions::HasInputDevices ] end def setScreenOrientation(orientation) execute :setScreenOrientation, {}, :orientation => orientation end def getScreenOrientation execute :getScreenOrientation end def capabilities @capabilities ||= Remote::Capabilities.android end end # Bridge end # Android end # WebDriver end # Selenium
Version data entries
10 entries across 10 versions & 1 rubygems