How to Process Popup Windows

Newbie can automatically auto fill popup dialog windows using Newbie APIs.

 


 

Use the SendStringToWindow() and SendKeyPressToWindow() Newbie API functions.

 

For example:

SendStringToWindow('Log On As', 'steven', 1000);
SendKeyPressToWindow('Log On As', 'TAB', 1000);

SendStringToWindow('Log On As', 'somepassword', 1000);

SendKeyPressToWindow('Log On As', 'ENTER', 1000);

 

Where 'Log On As' is the title of the window, 'steven' is the string to send to the first field, 'TAB' to move focus

on the next field, 1000 is the number of milliseconds to wait before sending the string or key. SendKeyPressToWindow

using 'ENTER', submits the dialog. Please refer to the User's Manual on the descriptions of the functions used in this example.

 

 

Newbie Web Automation