pyautogui doesn't let me select text

纵然是瞬间 提交于 2019-12-09 21:49:40

问题


I want to select some text on the screen. I figured using pyautogui would be the way to go. I did the following:

keyDown('shift')
sleep(0.1)
press('end')
sleep(0.1)
keyUp('shift')

When doing this exact combination by hand it does select the text I want it to. Of course the sleep function is from the time module.

I even tried to select text in word using the following:

keyDown('shift')
press('right')
press('right')
keyUp('shift')

And even this didn't work... Does anyone know why?

Thanks in advance!


回答1:


I found the answer! Finally!
It wasn't selecting text for me as long as NUM LOCK was enabled. (I don't know why).

After disabling NUM LOCK it started selecting text again!




回答2:


You do not use click twice. Here is an example on how to do it from the documentation:

pyautogui.doubleClick()

PS: I tkink you wanted to do left click...




回答3:


Just found out about 'hotkey' function. Appears to be faster than the single key variation as well.

Example for a copy text and paste per line macro:

import pyautogui as pyg

def macro():

    pyg.press('home')
    pyg.hotkey('shiftleft', 'end')
    pyg.hotkey('ctrl', 'c')
    pyg.press('end')
    pyg.press('enter')
    pyg.hotkey('ctrl', 'v')
    pyg.press('down')

i = macro()

# Do macro 10 times
for i in range(10):
    macro()


来源:https://stackoverflow.com/questions/53489809/pyautogui-doesnt-let-me-select-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!