Sha256: a131464e9d23aaf7c00d5291fc647be076e72f6c0eaf401a2c47bada2903a03c
Contents?: true
Size: 430 Bytes
Versions: 30
Compression:
Stored size: 430 Bytes
Contents
# frozen_string_literal: true module CapybaraAtoms private def read_atom(function) @atoms ||= Hash.new do |hash, key| hash[key] = begin File.read(File.expand_path("../../atoms/#{key}.min.js", __FILE__)) rescue Errno::ENOENT super end end @atoms[function] end end ::Selenium::WebDriver::Remote::Bridge.prepend CapybaraAtoms unless ENV['DISABLE_CAPYBARA_SELENIUM_OPTIMIZATIONS']
Version data entries
30 entries across 20 versions & 3 rubygems