Getting stupid in my old age.

Discussion, questions and support.
Post Reply
User avatar
56Loaches
Posts: 13
Joined: Mar 7th, ’20, 18:14
Location: Sweden

Post by 56Loaches » Mar 7th, ’20, 19:13

Here's what I want to do:
GOTO a URL, {tab?}
Autotype username, {tab?}
Auto Advance to Password
Autotype Password
Enter.

How do I do this?
Kevin
User avatar
Marko
Posts: 1719
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Mar 7th, ’20, 20:00

Simple example: the script below opens a webpage, waits 2 seconds for a page to load, presses Tabs to locate the fields, sends the content and finally sends Enter key.
You need to adjust it to your case (change web address, number of key presses, you may need to add additional sleeps etc.) but I think you get the idea... :)

Type: Command

Code: Select all

Run, www.mywebpage.com/login
Sleep, 2000
Send, {Tab 2}
Send, MyName
Send, {Tab}
Send, MyPassword
Send, {Enter}
User avatar
56Loaches
Posts: 13
Joined: Mar 7th, ’20, 18:14
Location: Sweden

Post by 56Loaches » Mar 8th, ’20, 19:33

Perfect!
Thanks Very Much, Marko.
I was stumped by the "Command" option.

however, I did have to remove the "2" from the first TAB command.
User avatar
Marko
Posts: 1719
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Mar 8th, ’20, 19:42

{Tab 2}
is equivalent to
{Tab}{Tab}
User avatar
56Loaches
Posts: 13
Joined: Mar 7th, ’20, 18:14
Location: Sweden

Post by 56Loaches » Mar 10th, ’20, 17:45

duh
Post Reply