Hello people,
I want to click on this Excel file after downloading it.
Someone can help me to close my test step please.
thank you all
Hello people,
I want to click on this Excel file after downloading it.
Someone can help me to close my test step please.
thank you all
You cannot click on it. It is not an element on the web page, but rather a browser-level widget. If you want a reference to that file (to open it, get it’s name/path, etc.), you can do so with a File
object:
File file = new File("/path/to/download/folder/Liste_utilisateurs_fr.xlsx");
String name = file.getName();
String path = file.getAbsoluetPath();
// etc...
Hello Dear,
how can i add this code in my test script in order to open the file.
Thank you.
It depends on what you mean by “open”. You can pass that File object to any number of different libraries in order to read the file’s data. If you are trying to have the file visually opened on your computer:
1.) There’s no easy way to do that. Files come in a countless number of different extensions, which can only be opened in certain programs, and not all of them are immediately recognized by your OS.
2.) Once you got it opened, what were you planning on doing with it? Automation code cannot really do much beyond getting the file data as text and working with that.
Thank you very much Dear, for explanation.