InterviewSolution
Saved Bookmarks
| 1. |
Explain Playback.playbacksettings.continueonerror? |
|
Answer» GENERALLY in CODED UI at the time of script execution if any error occurs the execution will stop and TEST method fails. If the execution wants STILL to continue if any error occurs then the below statement is helpful Playback.PlaybackSettings.ContinueOnError = true; Generally in Coded UI at the time of script execution if any error occurs the execution will stop and test method fails. If the execution wants still to continue if any error occurs then the below statement is helpful Playback.PlaybackSettings.ContinueOnError = true; |
|