Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
keys.send(password)
#1
I am having trouble trying to send text like this (used in a password field):

keys.send("pU7O4%bOL%Wp");

Password fields now mostly require special characters. Can't seem to be able to figure out how to insert this in the field. I tried one like "!abcdefg", but the special character does not get send into the password input field.
#2
To send text you can use keys.sendt instead of keys.send.
 
Code:
Copy      Help
keys.sendt(@"password");

It is the same as
 
Code:
Copy      Help
keys.send(@"!password");

Or paste.
 
Code:
Copy      Help
clipboard.paste(@"password");
#3
Thank you. Got it now.


Forum Jump:


Users browsing this thread: 1 Guest(s)