Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我pyautogui用来模拟同时按下 shift 和 end - 当我自己键入时,它会突出显示所有条目,但是当我通过下面的代码执行此操作时,它只是移动到结束文件 - 而不是突出显示每个组件,所以似乎没有按下shift。想知道是否有人有任何想法?
pyautogui
pyautogui.keyDown('shift') pyautogui.keyDown('end') pyautogui.keyUp('end') pyautogui.keyUp('shift')
我知道这个问题很老,但是您可以通过以下方式获得相同的结果:
pyautogui.hotkey('shift', 'end')