Forum Discussion
Semirxbih
2 years agoContributor
I am not sure why it did that, this is the code that I provided for the first:
var downloadDialog = Aliases.browser.FindChildEx(
["ObjectType", "Caption"],
["Dialog", "Downloads"],
10,
true,
60000
);
And this is the code that I provided for the second code block:
var test = Aliases.browser.Dialog("Downloads").Pane(0);
var test1 = Aliases.browser.Dialog("Downloads");
rraghvani
Champion Level 3
2 years agoIs it necessary to automate the Downloads dialog? Why not just configure your browser to automatically download the file to the specified folder?
- Semirxbih2 years agoContributor
Unfortunately, I need it to automate the downloads, since I need to be able to click "Save" and all that.