Class: Axe::Core

Inherits:
Object
  • Object
show all
Defined in:
lib/axe/core.rb

Constant Summary collapse

JS_NAME =
"axe"

Instance Method Summary collapse

Constructor Details

#initialize(page) ⇒ Core

Returns a new instance of Core.



11
12
13
14
# File 'lib/axe/core.rb', line 11

def initialize(page)
  @page = wrap_driver page
  load_axe_core Axe::Configuration.instance.jslib
end

Instance Method Details

#call(callable) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/axe/core.rb', line 16

def call(callable)
  if use_run_partial
    callable.analyze_post_43x @page, self
  else
    callable.call @page
  end
end

#call_verbatim(callable) ⇒ Object



24
25
26
# File 'lib/axe/core.rb', line 24

def call_verbatim(callable)
  callable.call @page
end