Search code examples
rubyselenium-webdrivercucumbercapybarasite-prism

How to Print Browser console logs using Cucumber Ruby Automation?


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


Solution

  • 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