- Print
- DarkLight
Is it possible to ignore the failure of a particular step?
Article Summary
Yes, it is possible! You can select how to handle the failure at each step from the following three patterns.
If the test fails,
- Abort
- Mark this step as failed and continue
- Ignore and continue
In 2, the test continues, but the fact that it failed is not ignored, so if the step fails, the entire test is treated as a failure even if there is no other step that failed and the test was executed to the end. In 3, since the failure is ignored, the entire test will be treated as a success if there are no other failed steps and was executed to the end, even if the step fails.