如何使用 VB 脚本处理 IE 下载对话框?
如何使用VB脚本自动保存文件到特定位置?
或者如何在不交互的情况下将文件下载到 IE 中的特定位置 带下载对话框?
最终我需要自动从 IE 保存文件到特定位置。
谢谢。
how to save file automatically in particular location using VB Script ?
or How is it possible to Download file to particular location in IE without interacting
with Download dialog ?
Ultimately I need to save file in particular location from IE automatically.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们通过 selenium 测试对文件对话框所做的是利用 AutoIt,这是一个免费的脚本工具,创建与 Windows 组件对象模型交互的可执行文件——包括文件保存对话框。
我要做的就是制作一个简单的脚本,将文件保存在您想要的位置,编译为可执行文件,然后在 VBScript 中调用该程序。
这是我们用来下载 Excel 文件的脚本,尽管它可能比您需要的要复杂一些。
What we do for file dialogs with our selenium tests is to leverage AutoIt, a free scripting tool that creates executables that interact with the windows component object model--including file save dialogs.
What I would do is make a simple script that saves the file in your desired location, compile to an executable, and then in VBScript call that program.
Here is a script we use for downloading excel files, although it may be a bit more complicated than what you need.
在 Internet Explorer 中强制下载文件是极其糟糕的做法。这也是一个安全风险。这就是为什么没有本地方法可以做到这一点。你能提供一个需要这个的充分理由吗?否则,我不会因为我刚才所说的原因提供解决方案。
Forcing a file download in Internet Explorer is extremely bad practice. It's also a security risk. That's why there are no native methods for doing this. Can you provide a good reason for needing this? Otherwise, I'm not going to provide a solution for the reasons I've just stated.