I am using my host where i used to connect to the Remote machine where i want to fetch some data. I am using pyautogui for press operation and typewrite() to enter some values. The remote server is configured and application i want to operate will be always open when i connect to remote machine.
I am able to login through pyautogui.
after that when i write below code:
pyautogui.press('esc')
pyautogui.press('f1')
pyautogui.typewrite("T")
Its not typing T on the application that is opened on remote server. Please suggest me some python way so that i can overcome from this issue.
Thanks Simun