Hi!
I would like to share a problem, we experinced recently.
In 2 different tests we have got download file dialogs.
In first test case IE 7 shows Download dialog with "Open", "Save", "Cancel" buttons. And this dialog is handled properly. (see attached file OpenSaveCancel.png)
In other test case IE 7 shows Dowload dialog with "Find", "Save", "Cancel" buttons. And Webaii doesn't handle this dialog at all. (see attached file FindSaveCancel.png)
Our configuration:
Webaii: 2010.2 830
IE7
OS: WinXP
Here is a piece of code which handles both dialogs:
We also tried to write this test using WebUI Test studio Developers edition, but we got the same issue.
Could you please help us to resolve this issue?
I would like to share a problem, we experinced recently.
In 2 different tests we have got download file dialogs.
In first test case IE 7 shows Download dialog with "Open", "Save", "Cancel" buttons. And this dialog is handled properly. (see attached file OpenSaveCancel.png)
In other test case IE 7 shows Dowload dialog with "Find", "Save", "Cancel" buttons. And Webaii doesn't handle this dialog at all. (see attached file FindSaveCancel.png)
Our configuration:
Webaii: 2010.2 830
IE7
OS: WinXP
Here is a piece of code which handles both dialogs:
IEDownloadDialog iedownload = new IEDownloadDialog( Browser, DialogButton.SAVE, Manager.Desktop);Manager.DialogMonitor.AddDialog(iedownload);SaveAsDialog saveas = new SaveAsDialog( Browser, DialogButton.SAVE, fname, Manager.Desktop);Manager.DialogMonitor.AddDialog(saveas);IEDownloadCompleteDialog iedownloadComplete1 = new IEDownloadCompleteDialog( Browser, DialogButton.CLOSE, Manager.Desktop);Manager.DialogMonitor.AddDialog(iedownloadComplete1);Manager.DialogMonitor.Start();downloadExcelLink.MouseClick(MouseClickType.LeftClick);We also tried to write this test using WebUI Test studio Developers edition, but we got the same issue.
Could you please help us to resolve this issue?