如何用watin下載文件?我搜查了很多,嘗試過,但我無法得到它。 我只想點擊一個有下載並保存的鏈接。我使用了我發現但沒有成功的例子。問題是我使用「WaitUntilFileDownloadDialogIsHandled(15)」,但15秒傳遞和拋出異常:WatiN.Core.Exceptions.WatiNException:15秒後未顯示對話框。用Watin下載文件
這是代碼:
FileDownloadHandler download = new FileDownloadHandler("C:/Development/Test/Downloads/" + "excel" + ".xls");
using (new UseDialogOnce(browser.DialogWatcher, download))
{
browser.Button(Find.ById("id_of_the_button")).ClickNoWait();
download.WaitUntilFileDownloadDialogIsHandled(15);
download.WaitUntilDownloadCompleted(150);
browser.RemoveDialogHandler(download);
}
請幫助!
我忘了說下載文件,但使用即時通訊的Firefox來處理(沒關係,我也tryed IE – Javi 2011-05-27 11:47:51