Display/Show the results XLS file once the test run was finished.
I am using Eclipse Juno + Apache POI.
Any advice on how to show the test results MSExcel (XLS) file after the test run was finished.
I have methods to Read and Write XLS, but could not figure out how to display/show the XLS (which contains the test results).
Re: Display/Show the results XLS file once the test run was finished.
Maybe Runtime.exec(String) is the method you are looking for? You may start excel or a notepad as commandline to show your file.
Re: Display/Show the results XLS file once the test run was finished.
Thanks for your help!
I used Desktop class and it was done
Regards