Class: Selenium::WebDriver::Remote::Http::Default Private

Inherits:
Common
  • Object
show all
Defined in:
rb/lib/selenium/webdriver/remote/http/default.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Constant Summary

Constants inherited from Common

Common::CONTENT_TYPE, Common::DEFAULT_HEADERS, Common::MAX_REDIRECTS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Common

#call, #quit_errors

Constructor Details

#initialize(open_timeout: nil, read_timeout: nil) ⇒ Default

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Initializes object. Warning: Setting #open_timeout to non-nil values will cause a separate thread to spawn. Debuggers that freeze the process will not be able to evaluate any operations if that happens.

Parameters:

  • open_timeout (Numeric) (defaults to: nil)
    • Open timeout to apply to HTTP client.

  • read_timeout (Numeric) (defaults to: nil)
    • Read timeout (seconds) to apply to HTTP client.



36
37
38
39
40
# File 'rb/lib/selenium/webdriver/remote/http/default.rb', line 36

def initialize(open_timeout: nil, read_timeout: nil)
  @open_timeout = open_timeout
  @read_timeout = read_timeout
  super()
end

Instance Attribute Details

#open_timeoutObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



29
30
31
# File 'rb/lib/selenium/webdriver/remote/http/default.rb', line 29

def open_timeout
  @open_timeout
end

#proxy=(value) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



27
28
29
# File 'rb/lib/selenium/webdriver/remote/http/default.rb', line 27

def proxy=(value)
  @proxy = value
end

#read_timeoutObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



29
30
31
# File 'rb/lib/selenium/webdriver/remote/http/default.rb', line 29

def read_timeout
  @read_timeout
end

Instance Method Details

#closeObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



42
43
44
# File 'rb/lib/selenium/webdriver/remote/http/default.rb', line 42

def close
  @http&.finish
end