Pywinauto单击上下文菜单子菜单中的项目

时间:2017-08-22 12:11:47

标签: python wpf python-2.7 pywinauto

我想问一下是否有可能点击contextmenu的子菜单。

基本点击一些manuitem是基本的(代码示例):

app = Desktop(backend='uia').window(best_match='ItemTemplates')
win = app.window(best_match='Visual Web Developer')
win.click_input(button='right')

app = Desktop(backend='uia').window(best_match='Context')
win = app.window(best_match='Send To')
win.click_input()

在此代码中,我将右键单击资源管理器的元素,然后单击,发送到“右键菜单的所有元素都在 u'Context'。子菜单项是个谜。

Example

0 个答案:

没有答案