我正在尝试使用PyAutoGUI在Citrix环境中填写登录表单。但是我无法按"Cannot rename property 'User.date3' because it does not exist."
键来切换表单字段。像TAB
这样的键工作正常。
手动Enter
正在处理该表单,但它无法使用PyAutoGUI。以下是我正在尝试的代码。
TAB
但是,time.sleep(10)
im9 = pyautogui.screenshot()
im9 = np.array(im9)
# locate_image locates image on current screen
username_sp = fi.locate_image(im9, 'Screenshot.png')
if username_sp:
pyautogui.typewrite('Username\t',interval=1)
time.sleep(2)
pyautogui.press('tab')
pyautogui.typewrite(r'pass',interval=0.25)
和user
会被绑定到单个用户名字段中。在正常环境pass
工作正常。