Watin-如何下载带有 IE 弹出窗口的 pdf 文件

发布于 2024-10-30 11:00:24 字数 526 浏览 1 评论 0原文

我正在尝试使用 Watin 下载 PDF 文件,但无法下载文件。我已经编写了以下代码,但它不起作用。 实际场景附有图像文件。 请点击链接。

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
    {
    }
}

I am trying to download PDF file using Watin but I can't download file. I have wrote following code but it doesn't work. Actual scenario is atteched with image file.
please click on link.

IE ie = IE.AttachToIE(Find.ByUrl("Url here..."));--Its give error.

FileDownloadHandler handler = new FileDownloadHandler(fullFileName);
using (new UseDialogOnce(ie.DialogWatcher, handler))
{
    lnkDoc.Click();
    try
    {
        handler.WaitUntilFileDownloadDialogIsHandled(30);
        handler.WaitUntilDownloadCompleted(100);
    }
    catch
    {
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羞稚 2024-11-06 11:00:24

您尝试附加到的这个新窗口显示的是 PDF。 WatiN 无法连接到此类窗口。

This new window you try to attach to is showing a PDF. WatiN can't attach to these kind of windows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文