我很难找到合适的解决方案将我的输入粘贴到输入字段中。我正在使用库 Xdo。
我在做什么 ?
Python 文件在后端运行。
该程序从智能卡中获取数据。
返回的数据是数字/英语和泰语。
然后在浏览器中,当我单击输入按钮时,值将被粘贴到输入按钮中。
问题是什么?
数字数据(身份证/生日)在浏览器中正确打印。
泰国文本给了麻烦。它们有时没有插入或部分插入。
*这曾经在 **windows机器上工作,但我使用的是不同的库(SendKeys for windows 程序)。但是在linux上使用 Xdo给我带来了麻烦。***
以下是我的示例代码
from xdo import Xdo
xdo = Xdo()
res = convert_data(resultlist)
title_th = res['title_th']
fname_th = res['fname_th']
lname_th = res['lname_th']
birthday = res['birthday']
address = res['address']
win_id = xdo.get_focused_window()
xdo.enter_text_window(win_id, res['id'])
xdo.send_keysequence_window(win_id,'Tab')
xdo.enter_text_window(win_id,str(title_th.decode('tis-620')))
xdo.send_keysequence_window(win_id,'Tab')
xdo.enter_text_window(win_id,str(fname_th.decode('tis-620')))
xdo.send_keysequence_window(win_id,'Tab')
xdo.enter_text_window(win_id,str(lname_th.decode('tis-620')))
xdo.send_keysequence_window(win_id,'Tab')
xdo.enter_text_window(win_id,str(birthday.decode('tis-620')))
xdo.send_keysequence_window(win_id,'Tab')
xdo.enter_text_window(win_id,str(address.decode('tis-620')))
xdo.send_keysequence_window(win_id,'Tab')
以下是示例图像。
如您所见,一些泰语文本被部分输入,而另一些则被跳过。
非常感谢寻找任何建议或我当前解决方案的任何替代方案。