01: package watij.dialogs;
02:
03: public interface FileDownloadDialog extends Dialog {
04: void open() throws Exception;
05:
06: void cancel() throws Exception;
07:
08: void save(String fullPathAndFileName) throws Exception;
09:
10: void closeThisDialogBoxWhenDownloadCompletes(boolean close)
11: throws Exception;
12:
13: void waitUntilDownloadComplete() throws Exception;
14:
15: void close() throws Exception;
16: }
|