Exam AD01 All QuestionsBrowse all questions from this exam
Question 69

Consider the following flow within an Object Studio action:

The developer of this flow found that writing some credentials to the target application sometimes failed with an exception even though the element exists on the screen. He found that simply catching the exception, waiting for 2 seconds and then retrying fixed the problem.

What problems do you see within the flow?

    Correct Answer: B

    The potential for an infinite loop is the problem within the flow. If the 'Credentials' stage keeps throwing an exception for some unforeseen reason, the flow will continuously catch the exception, wait for 2 seconds, and retry, leading to an endless cycle without any mechanism to break out of the loop.

Discussion
sogoku_ichi_2907Option: B

Yes, B is the correct answer.

dddamianOption: B

B definitely