WatiN 可以在不需要焦点的情况下下载文件吗?

发布于 2024-10-29 06:03:04 字数 471 浏览 3 评论 0原文

我使用 WatiN 来自动与多个网站进行文件传输(EDI 事务),不幸的是,FTP 或其他自动化友好的方式不是一个选项。对于下载,我使用此示例的变体:

FileDownloadHandler download = new FileDownloadHandler(fullFilename);
using (new UseDialogOnce(ie.DialogWatcher, download))
{
    lnkFile.ClickNoWait();

    download.WaitUntilFileDownloadDialogIsHandled(15);
    download.WaitUntilDownloadCompleted(150);
}

这工作正常,唯一的问题是它需要焦点。下载数十个文件并可能需要一段时间才能完成的情况并不罕见。我在远程会话中运行它,这样我的机器就不会无法使用,但如果有任何方法可以消除对焦点的需要,那就很方便了。

I use WatiN to automate file transfers (EDI transactions) to/from multiple websites, unfortunately FTP or anything more automation-friendly is not an option. For downloads, I use variations of this example:

FileDownloadHandler download = new FileDownloadHandler(fullFilename);
using (new UseDialogOnce(ie.DialogWatcher, download))
{
    lnkFile.ClickNoWait();

    download.WaitUntilFileDownloadDialogIsHandled(15);
    download.WaitUntilDownloadCompleted(150);
}

This works fine, the only problem is that it requires focus. It's not uncommon for there to be dozens of files to download which can take awhile to complete. I run it in a remote session so my machine isn't unusable, but if there's any way to remove the need for focus it'd be convenient.

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

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

发布评论

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

评论(1

短叹 2024-11-05 06:03:04

我将使用 WebClient 类,而不是 Watin。 http://msdn.microsoft.com/en-us/library /system.net.webclient.aspx

应该能够使用该类上传和下载文件。

Instead of Watin, I would use the WebClient class. http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx

Should be able to upload and download files using that class.

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