Multiple choice technology testing

What can you use to handle unpredictable testing exceptions?

  1. A. A Do Loop

  2. B. Recovery Scenario

  3. C. IF then Statement

  4. D. Select case statement.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Recovery Scenarios in testing tools like QTP/UFT are specifically designed to handle unexpected events and errors that occur during test execution. They can be triggered by specific error conditions and contain recovery steps to get the test back on track, making them the correct choice for unpredictable testing exceptions. Do loops and IF-then statements are programmatic constructs, not error-handling mechanisms.