How to Print Browser console logs using Cucumber Ruby Automation?

4.4k Views Asked by At

Can you please help on printing the console logs generate in web browser for any errors in Cucumber Capybara Test Automation? I am using PhantomJS webdriver as below:

Capybara::Selenium::Driver.new(app, :browser => :phantomjs, desired_capabilities: { 'phantomjs.cli.args' => ['--ignore-ssl-errors=yes']

I want to capture Browser JS console logs and print it while i need on automation execution

1

There are 1 best solutions below

5
On BEST ANSWER

Since you're using selenium you can try

page.driver.browser.manage.logs.get("browser")

Note: I've never tried it with PhantomJS as the browser