我正在尝试使用Watin下载PDF文件,但我无法下载文件。我写了下面的代码,但它不起作用。 Actual scenario is atteched with image file。 请点击链接。
IE ie = IE.AttachToIE(Find.ByUrl(“Url here ...”)); - 给出错误。
FileDownloadHandler handler = new FileDownloadHandler(fullFileName);
using (new UseDialogOnce(ie.DialogWatcher, handler))
{
lnkDoc.Click();
try
{
handler.WaitUntilFileDownloadDialogIsHandled(30);
handler.WaitUntilDownloadCompleted(100);
}
catch
{
}
}
答案 0 :(得分:1)
您尝试附加的新窗口显示PDF。 WatiN无法附加到这些窗户上。