Sha256: 8da5578491f2a10f545554c0747d402e2bf0fd83da48215d6e0ab10a8fce9434
Contents?: true
Size: 358 Bytes
Versions: 69
Compression:
Stored size: 358 Bytes
Contents
# frozen_string_literal: true module Capybara module Selenium class PersistentClient < ::Selenium::WebDriver::Remote::Http::Default def close super @http.finish if @http&.started? end private def http super.tap do |http| http.start unless http.started? end end end end end
Version data entries
69 entries across 56 versions & 5 rubygems