问题:在 IE11 中,显示“您确定要离开此页面吗?”的对话框警报。有两个选项,“离开此页面”或留在此页面上。
在 object spy 中,这是捕获的内容:
browser.Describe<IDialog>(new DialogDescription
{
IsOwnedWindow = true,
IsChildWindow = false,
Text = @"Windows Internet Explorer",
NativeClass = @"#32770"
}).Describe<IButton>(new ButtonDescription
{
Text = @"&Leave this page",
NativeClass = @"Button"
});
如何点击“离开此选项”?