我沒有從列表中選擇一個項目(使用代碼波紋管),我現在需要發送一個ctrl+E
。問題是,SendKeys方法isn't available,我不能使用SendKeys('^e')
。 (此快捷方式將在同上應用程式編輯所選擇的項目)pywinauto:如何SendKeys不接受SendKeys的ListView?
from pywinauto.application import Application
from pywinauto import findbestmatch
from pywinauto import keyboard #not sure if I need to import it
ditto=Application().connect(path='Ditto.exe')
#---- print all available methods of the object
print(dir(ditto.ditto.SysListView321.wrapper_object())) #(the list does not contains 'SendKeys')
#-----Find and select the item (containing 'xxx') in the SysListView321
#The list of texts to search through
texts = ditto.ditto.SysListView321.texts()[1:] #skip window text itself, use only item texts
# The list of items corresponding (1 to 1) to the list of texts to search through.
items = ditto.ditto.SysListView321.items() #>>[]
found_item = findbestmatch.find_best_match('xxx', texts, items, limit_ratio=0.1).Select()
一些錯誤:
ditto.ditto.SysListView321.SendKeys('^e')
... WindowSpecification class has no 'SendKeys' method
ditto.ditto.SysListView321.keyboard.SendKeys('^e')
... findbestmatch.MatchError: Could not find 'keyboard' in 'dict_keys(['', 'Header'])'
[編輯](更多錯誤)
ditto.ditto.SysListView321.type_keys('^e')
win32gui.SetForegroundWindow(self.handle) pywintypes.error: (0, 'SetForegroundWindow', 'No error message is available')
keyboard.send_keys('^e')
AttributeError: module 'pywinauto.keyboard' has no attribute 'send_keys'
(詩。對於初學者:app.Ditto
相當於app.window(best_match='Ditto')
)
謝謝!關於我的問題,你的解決方案沒有任何工作(但它越來越好!)。我在我的問題編輯中添加了新的控制檯錯誤。 ditto.ditto.SysListView321.type_keys('^ e')並不遙遠:如果我在同一時間多次點擊同上窗口,我會啓動代碼,它會起作用。所以它似乎是一個活動窗口的問題。腳本在同上列表中選擇一個項目,但在type_keys('^ e')期間似乎失去焦點。 –
我不明白你使用'.keyboard'的意思:我使用'keyboard.SendKeys'與我使用'findbestmatch.find_best_match'(用於訪問類中的方法)相同的方式。 'SendKey's是'keyboard'類的一種方法嗎?鍵盤是一個模塊和鍵盤吧?如果是這樣,爲什麼不把它們作爲python調用呢:'class.method'? http://pywinauto.readthedocs.io/en/latest/code/code.html#main-user-modules –
「keyboard」是一個模塊,它不是另一個類的成員。你有沒有使用其他編程語言的類? –