English 中文(简体)
在 Internet Internet 探索中下载 Excel 文件
原标题:Downloading Excel file in Internet Explore through selenium

我不得不将一个需要使用 ide 下载优异文件的案例自动化 。 我通过使用自定义配置功能在 Firefox 中这样做, 该功能自动下载文件并将其保存到用户定义的文件夹中。 要在互联网探索者中这样做, 在 IE 中是否有像自定义配置和偏好这样的东西? 我如何促使 IE 自动下载文件? I 正在使用 java 进行自动化 。... kindly help 。

最佳回答

不,您无法在 IE 中轻易做到这一点, 没有要配置的配置配置配置 。

这么说,你可以试试:

  • downloading the file directly using this (or any other similar WebDriver-friendly tool), if you can. That will totally cut IE out of the process.
  • see How to download and save a file from Internet using Java? about the same thing, just generic Java and not WebDriver.
  • if everything fails, you can try blindly pressing Enter after clicking the download, Robot helps with this. But you can t really specify the folder.
问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签