In Rails project, I\'m using Cucumber, with Capybara, in order to run my tests in a Chrome web browser through Selenium.
My tests are running fine but I would like to ge
The logs don't show up automatically, you would need to request them from Selenium and then add then write them out to whatever log you like. To request the logs you need to do something like
page.driver.browser.manage.logs.get(:browser) # :driver, etc.
Generally you'd do something like that in an after step and then write it to the log file you want it to be in.