Using Capybara and Rspec, how do I get a more detailed log?

My Capybara / Selenium / RSpec script is currently running without output. He just sits and waits until all the scenarios are over. I want to get a more detailed output.

To get started, I need a log at the beginning of each script so I know which scripts are running.

Then I want the result of each scenario to register, pass, or fail.

Can I do this manually using before / after interception? Is there an option that I can pass to the rspec command? Or maybe some other solution?

+4
source share

Source: https://habr.com/ru/post/1526468/


All Articles