I am having a problem with the Monitored Test cases "Use of Back Button". I always get the error message
[ERROR]: Pressing the Back button on page MainPage.xaml does not close the dialog box
I'm pretty sure, that I close all Dialog
s, when the Back-Button is pressed. I even null them out,
after returning a valid DialogResult
.
Are there eventually any Controls
(I only use standard Controls
) that are classified as Dialog
, like ContextMenus
or other Controls
?
And how can I know, which Dialog
is meant? Are there any protocol files or something, that tells me in detail,
how the test was passed? Output Windows or something else in Visual Studio 2010?
For anyone else coming across this question, there is an answer in the version of this question posted on the MSDN forums:
http://forums.create.msdn.com/forums/p/97842/583498.aspx#583498
(There was a ChildWindow which needed to be explicitly closed.)