Sha256: 8fb0a0f22a1da92df43afaf8a826abcb173dfb9f65f25e99ceefa1c0d8942759
Contents?: true
Size: 342 Bytes
Versions: 113
Compression:
Stored size: 342 Bytes
Contents
module Selenium module WebDriver module Error class ServerError < StandardError def initialize(response) if response.kind_of? String super(response) else super("status code #{response.code}") end end end end # Error end # WebDriver end # Selenium
Version data entries
113 entries across 113 versions & 5 rubygems