0

我正在尝试在 Python 中调用 osascript 来模拟按键,如下所示:

cmd = """
    osascript -e 'tell application "System Events" to keystroke "e"'
    """
os.system(cmd)

如何发送向上/向下/向左/向右箭头键的按键?

4

1 回答 1

0

方向键的键码:左 - 123 右 - 124 下 - 125 上 - 126

于 2013-09-29T20:17:49.503 回答