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?
|
feedback
|
|
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:
However, if you're using only watir-webdriver from the console, you can redirect watir-webdriver errors to a file by doing the following:
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. | |||
|
feedback
|