Class: Webdriver::Connection
- Inherits:
-
Object
- Object
- Webdriver::Connection
- Defined in:
- lib/webdriver/connection.rb
Instance Method Summary collapse
- #call(method, path, headers = {}, body = {}) ⇒ Object
- #get(path, headers = {}) ⇒ Object
-
#initialize(endpoint, open_timeout: 3, read_timeout: 5, write_timeout: 5) ⇒ Connection
constructor
A new instance of Connection.
- #post(path, headers = {}, body = nil) ⇒ Object
Constructor Details
#initialize(endpoint, open_timeout: 3, read_timeout: 5, write_timeout: 5) ⇒ Connection
Returns a new instance of Connection.
3 4 5 6 7 8 9 10 11 |
# File 'lib/webdriver/connection.rb', line 3 def initialize endpoint, open_timeout: 3, read_timeout: 5, write_timeout: 5 uri = URI(endpoint) @http = Net::HTTP.new uri.hostname, uri.port @http.open_timeout = open_timeout @http.read_timeout = read_timeout @http.write_timeout = write_timeout @mutex = Mutex.new end |
Instance Method Details
#call(method, path, headers = {}, body = {}) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/webdriver/connection.rb', line 25 def call method, path, headers={}, body={} path = "/#{path}" body_json = body.to_json if body Webdriver.debug [method, path, headers, body_json] response = @mutex.synchronize do case method when :get @http.get path when :post @http.post path, body_json when :delete @http.delete path, body_json else raise "err" end end response_body = JSON.parse response.body status = response_body.dig "status" session_id = response_body.dig "sessionId" value = response_body.dig "value" case status when nil # application_status_cache value when 0 # POST /session has different response structure than other calls if method == :post && path == "/session" value.merge("id" => session_id) else # everything else works like this value end when 7 raise Webdriver::NoSuchElementError.new value.dig("message") when 8 raise Webdriver::NoSuchFrameError.new body[:id] when 10 raise Webdriver::StaleElementReferenceError.new path when 11 raise Webdriver::ElementNotInteractableError.new path when 13 raise Webdriver::UnknownErrorUnhandledInspectorError.new value.dig("message") when 26 raise Webdriver::UnexpectedAlertOpen.new value.dig("message") when 27 raise Webdriver::NoSuchAlert.new value.dig("message") when 28 raise Webdriver::ScriptTimeout.new value.dig("message") when 1..nil = value.dig("message") raise "#{status}: #{}" else if method == :get && path == "/status" value else raise "unknown status: #{status}" end end end |
#get(path, headers = {}) ⇒ Object
13 14 15 |
# File 'lib/webdriver/connection.rb', line 13 def get path, headers={} call :get, path, headers end |
#post(path, headers = {}, body = nil) ⇒ Object
17 18 19 |
# File 'lib/webdriver/connection.rb', line 17 def post path, headers={}, body=nil call :post, path, headers, body end |