Class: Appium::Core::Options

Inherits:
Object
  • Object
show all
Defined in:
lib/appium_lib_core/driver.rb

Overview

This options affects only client side as :appium_lib key.
Read Driver about each attribute

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(appium_lib_opts) ⇒ Options

Returns a new instance of Options.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/appium_lib_core/driver.rb', line 37

def initialize(appium_lib_opts)
  @custom_url = appium_lib_opts.fetch :server_url, nil
  @default_wait = appium_lib_opts.fetch :wait, Driver::DEFAULT_IMPLICIT_WAIT

  # bump current session id into a particular file
  @export_session = appium_lib_opts.fetch :export_session, false
  @export_session_path = appium_lib_opts.fetch :export_session_path, default_tmp_appium_lib_session

  @direct_connect = appium_lib_opts.fetch :direct_connect, false

  @port = appium_lib_opts.fetch :port, Driver::DEFAULT_APPIUM_PORT

  # timeout and interval used in ::Appium::Comm.wait/wait_true
  @wait_timeout  = appium_lib_opts.fetch :wait_timeout, ::Appium::Core::Wait::DEFAULT_TIMEOUT
  @wait_interval = appium_lib_opts.fetch :wait_interval, ::Appium::Core::Wait::DEFAULT_INTERVAL

  # to pass it in Selenium.new.
  # 'listener = opts.delete(:listener)' is called in Selenium::Driver.new
  @listener = appium_lib_opts.fetch :listener, nil
end

Instance Attribute Details

#custom_urlObject (readonly)

Returns the value of attribute custom_url.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def custom_url
  @custom_url
end

#default_waitObject (readonly)

Returns the value of attribute default_wait.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def default_wait
  @default_wait
end

#direct_connectObject (readonly)

Returns the value of attribute direct_connect.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def direct_connect
  @direct_connect
end

#export_sessionObject (readonly)

Returns the value of attribute export_session.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def export_session
  @export_session
end

#export_session_pathObject (readonly)

Returns the value of attribute export_session_path.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def export_session_path
  @export_session_path
end

#listenerObject (readonly)

Returns the value of attribute listener.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def listener
  @listener
end

#portObject (readonly)

Returns the value of attribute port.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def port
  @port
end

#wait_intervalObject (readonly)

Returns the value of attribute wait_interval.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def wait_interval
  @wait_interval
end

#wait_timeoutObject (readonly)

Returns the value of attribute wait_timeout.



33
34
35
# File 'lib/appium_lib_core/driver.rb', line 33

def wait_timeout
  @wait_timeout
end