Class: Selenium::WebDriver::Remote::Http::Default Private
- Defined in:
- 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
- #open_timeout ⇒ Object private
- #proxy ⇒ Object writeonly private
- #read_timeout ⇒ Object private
Instance Method Summary collapse
- #close ⇒ Object private
-
#initialize(open_timeout: nil, read_timeout: nil) ⇒ Default
constructor
private
Initializes object.
Methods inherited from Common
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.
36 37 38 39 40 |
# File '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_timeout ⇒ 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.
29 30 31 |
# File '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 'lib/selenium/webdriver/remote/http/default.rb', line 27 def proxy=(value) @proxy = value end |
#read_timeout ⇒ 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.
29 30 31 |
# File 'lib/selenium/webdriver/remote/http/default.rb', line 29 def read_timeout @read_timeout end |
Instance Method Details
#close ⇒ 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.
42 43 44 |
# File 'lib/selenium/webdriver/remote/http/default.rb', line 42 def close @http&.finish end |