Skip to content

Commit

Permalink
fix(capybara): open browser based on passed symbol (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-siek committed Apr 20, 2023
1 parent 81ca285 commit c43ee49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/axe-core-capybara/lib/axe-capybara.rb
Expand Up @@ -25,6 +25,6 @@ def self.configure(browser = :firefox)
private

def self.get_driver(browserSymbol)
Capybara::Selenium::Driver.new(browserSymbol)
Capybara::Selenium::Driver.new nil, :browser => browserSymbol
end
end
8 changes: 8 additions & 0 deletions packages/axe-core-capybara/spec/axe-capybara_spec.rb
Expand Up @@ -27,6 +27,14 @@
}.to yield_with_args(actual)
end

# Default is firefox, so we can just check that we can override the default
it "sets browser" do
driver = AxeCapybara.configure(:chrome) do
end
is_chrome = driver.page.execute_script "return !!window.chrome"
expect(is_chrome).to be true
end

it "should yield configuration with specified jslib path" do
different_axe_path = "different-axe-path/axe.js"

Expand Down

0 comments on commit c43ee49

Please sign in to comment.