12

我正在使用pyautoguilib 创建一个自动测试应用程序。我想使用typewrite方法将文本输入到表单中。但是我的一些输入字符串中包含 unicode 字符。例如:

奈斯特

根据文档typewrite只能按单字符键。所以它只是忽略了æ角色。

你能建议一些简单的解决方法吗?

4

5 回答 5

26

我知道这个线程很旧,但为了这个话题,我认为我设法以更简单的方式使用 pyperclip 绕过它。

与其尝试让 pyautogui 键入特殊字符,不如使用 pyperclip 将它们复制到剪贴板,然后使用 pyautogui 粘贴它们。例如在 Windows 上:

import pyautogui
import pyperclip

pyperclip.copy("It's leviOsa, not lêvioçÁ!")
pyautogui.hotkey("ctrl", "v")

编辑:

我们可以使其在多个平台上工作,如下所示(感谢@karlo 指出):

import pyautogui
import pyperclip
import platform

def type(text: str):    
    pyperclip.copy(text)
    if platform.system() == "Darwin":
        pyautogui.hotkey("command", "v")
    else:
        pyautogui.hotkey("ctrl", "v")


type("It's leviOsa, not lêvioçÁ!")
于 2017-05-11T14:16:39.770 回答
3

找到了一个很简单的。

在 Mac 和 Linux 中,可以使用十六进制代码输入 unicode 字符。维基百科上有关于此的文章。我正在为 Mac 编写程序,因此我在键盘设置中启用了 Unicode Hex Input 并编写了以下代码:

def type_unicode(word):
    for c in word:
        c = '%04x' % ord(c)
        pyautogui.keyDown('optionleft')
        pyautogui.typewrite(c)
        pyautogui.keyUp('optionleft')
于 2015-10-15T15:36:57.023 回答
0

相反pynput,我发现输入 Unicode 文本更容易。pip install pynput使用或安装它pip3 install pynput

from pynput.keyboard import Controller

keyboard = Controller()

keyboard.type("Næst")
于 2021-09-09T19:16:08.607 回答
0
from pynput.keyboard import Controller
import time 
time.sleep(3)
Controller().type("Næst")

此代码完美运行。只需要使用 pip 命令安装 pynput。

于 2021-12-20T19:13:26.067 回答
0

我尝试了trestlnord的答案,但没有奏效。我将这个想法改编为:

import pyautogui as px

def type_unicode(word):
    for char in word:
        num = hex(ord(char))
        px.hotkey('ctrl', 'shift', 'u')
        for n in num:
            px.typewrite(n)
        px.typewrite('\n')

适用于arch linux

于 2020-06-15T02:51:08.810 回答