I am wondering if watir-webdriver as the ability to log the output of any console errors? This would be equivalent to manually opening the console in a browser and watching for JS errors as a page loads. Can I capture this through watir-webdriver and log/error on?

link|improve this question
feedback

1 Answer

When using watir-webdriver in combination with Cucumber, the errors, if any, output to an html file that is very well formatted and includes watir-webdriver errors.

This can be accomplished by adding the following flags to your default profile in cucumber.yml:

--color --format pretty --format html -o results.html More info on this file here. Here's some background on Cucumber.

However, if you're using only watir-webdriver from the console, you can redirect watir-webdriver errors to a file by doing the following:

$ ruby your_watir_script.rb 2> watir_debug.log #watir outputs errors as stderr

In most cases, if something in watir fails (e.g an element can't be found) then everything after that will also fail, which is why its useful to have something like Cucumber drive your automation on a scenario basis.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.