I have an application that is used for logging
the employees to the vmware desktop. Our company uses Google mail for email with our company domain name.
Now , what I want to do is grab the username and password from that application (which was written in C#) and use it to login to google drive without interfering the user experience.
So far, I tried using
Process()
class to open google drive and SendKeys()
method to fill the email and password form for them. However, I have not been able to do this whole process in a background.
Is there any way to open google drive and run it in background and fill the form?
Any help will be greatly appreciated. Thanks.