How to allow save option on Firefox while downloading a file with C#- NUnit?

How to allow save option on Firefox while downloading a file with C#- NUnit?

Hi Rhian

It is impossible to handle Firefox save file dialog since it is a Windows-based component. Moreover, Selenium does not recognize any such components. Assuming that you are using Selenium RC, I suggest you use 3rd party tools like AutoIt in this case.

You dont need to write the whole test in AutoIt; simply invoke it(the exe file) at the point when you have to handle the save as dialog box. After it has completed its actions, the control will return back to the Selenium RC code.

I hope this answers your query.