A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://www.rubydoc.info/github/teamcapybara/capybara/Capybara/Selenium/ChromeLogs below:

ChromeLogs – Documentation for teamcapybara/capybara (master) – RubyDoc.info

Module: Capybara::Selenium::ChromeLogs
Defined in:
lib/capybara/selenium/patches/logs.rb
Constant Summary collapse
LOG_MSG =
<<~MSG
  Chromedriver 75+ defaults to W3C mode. Please upgrade to chromedriver >= \
  75.0.3770.90 if you need to access logs while in W3C compliant mode.
MSG
COMMANDS =
{
  get_available_log_types: [:get, 'session/:session_id/se/log/types'],
  get_log: [:post, 'session/:session_id/se/log'],
  get_log_legacy: [:post, 'session/:session_id/log']
}.freeze
Instance Method Summary collapse Instance Method Details #available_log_types ⇒ Object
21
22
23
24
25
26
# File 'lib/capybara/selenium/patches/logs.rb', line 21

def available_log_types
  types = execute :get_available_log_types
  Array(types).map(&:to_sym)
rescue ::Selenium::WebDriver::Error::UnknownCommandError
  raise NotImplementedError, LOG_MSG
end
#commands(command) ⇒ Object
17
18
19
# File 'lib/capybara/selenium/patches/logs.rb', line 17

def commands(command)
  COMMANDS[command] || super
end
#log(type) ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/capybara/selenium/patches/logs.rb', line 28

def log(type)
  data = begin
    execute :get_log, {}, type: type.to_s
  rescue ::Selenium::WebDriver::Error::UnknownCommandError
    execute :get_log_legacy, {}, type: type.to_s
  end

  Array(data).map do |l|
    ::Selenium::WebDriver::LogEntry.new l.fetch('level', 'UNKNOWN'), l.fetch('timestamp'), l.fetch('message')
  rescue KeyError
    next
  end
rescue ::Selenium::WebDriver::Error::UnknownCommandError
  raise NotImplementedError, LOG_MSG
end

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4