I am using KeePAss to attempt to automate login. I can get to the point of passing the login information but it will not forward the information.
When working this manually I can bring up the log inn window lauinch KeePass hit ctrl-v and it will forward user name and password to the login screen.
Using UiPath I can bring up KeePass select the account to push to login but using the command ctrl-v will not forward the information. how can i pass this info
That’s possible with uipath
Here use SET TO CLIPBOARD activity where mention the input string between double quotes so that it will set our mentioned string in the clipboard
—then use SEND HOTKEY activity and use key as ctrl+v so that the set string by the previous activity to clipboard will paste in the field chosen with send hot key activity
in KeePass ctrl-v is a command to send the user name and password to the login. you select the correct password for use then ctrl v and it pushes both the user name and password at the same time. Unfortunately I am trying to push to a java app and cannot get uipath to focus on the java app to complete the push.
I think the real issue is that i cannot get the window to focus on the java window after capturing the information. manually I can bring up KeePass and my java login window press ctrl v and the user and pass are sent directly to the java login screen but using UiPath it will not refocus on the java based login window.