public void LogonDialogTest()
        {
            // TODO: Remove this line once you have updated this test with Url, UserName and Password
            throw new NotImplementedException(
                      "LogonDialog() test method needs to be updated with a Url/UserName & Password before you can execute it!");

            // Add a logon dialog support with username/password
            Manager.DialogMonitor.AddDialog(LogonDialog.CreateLogonDialog(ActiveBrowser, "<username>", "<password>", DialogButton.OK));
            Manager.DialogMonitor.Start();

            // Navigate to a page that need a logon
            ActiveBrowser.NavigateTo("<Place a Url to LogOn to here>");
        }