Search code examples
pywinauto

Press key with pywinauto


Extremely straightforward question.

Just want to press a keyboard key. Like enter, using pywin auto. I don't want to press it in the context of any application window.

Just a raw keypress of a keyboard key, like a or enter or backspace.


Solution

  • Just use

    # from pywinauto.SendKeysCtypes import SendKeys # old for pywinauto==0.5.x
    from pywinauto.keyboard import send_keys
    
    send_keys('some text{ENTER 2}some more textt{BACKSPACE}', with_spaces=True)
    

    Docs: https://pywinauto.readthedocs.io/en/latest/code/pywinauto.keyboard.html

    P.S. SendKeysCtypes was renamed to keyboard in pywinauto 0.6.0+.