I have an "Export" button so after click on it the .csv file with some data is downloaded.
Is there a way to test in Selenium2 the following points:
- The file is downloaded after click on the "Export" button
- The downloaded file is a .csv format file.
- File data is correct. (There are three columns, let them be Column1, Column2, Column3 )
I will really appreciate all of the suggestions on how to do the tings above using Java.