在python3中按标题选择窗口

时间:2018-12-06 07:24:39

标签: python python-3.x winforms pywinauto

这是一个有趣的人!

使用pywinauto我试图在有条件的情况下关闭该软件中的弹出窗口。

def get_window():
    app = pywinauto.application.Application(backend="uia")
    app.connect(path='gofer.exe')
    #app.Properties.print_control_identifiers()
    trade = app.window(best_match='Warning:')
    # trade.wrapper_object().close
    print(trade)
    if trade == 'Warning:':
        print("You see the Window")
        # press enter key to displace
        # start next action
    else:
        print("Naw, No window bro")
        # Log to file 
        pass

打印(交易)的输出为:

<pywinauto.application.WindowSpecification object at 0x0000019B8296DBA8>

因此,我知道它至少可以正常运行,但无法到达我想要的位置。警告是一个弹出的窗口,根据spy ++的标题为警告,但是我无法打印窗口数据...尽管该窗口是弹出窗口,但如果这有所不同,则不是吐司弹出窗口。这是dlg窗口。

属性将打印仅引用主程序并提示对话框窗口的dict,但从不指定属性。即使在搜索主程序标题时,我也无法正常工作。

非常感谢!

1 个答案:

答案 0 :(得分:1)

这就是我用来识别弹出窗口的操作。本质上,您想创建一个对话框(dlg)来代表作为弹出窗口父窗口的窗口:

app = pywinauto.application.Application(backend="uia")
app.connect(path='gofer.exe')

# Using regular expression to create a dialog of the gofer.exe app
# I am assuming the title will match "*Gofer*" eg: "Gofer the Application"
dlg = app.window(title_re=".*Gofer.*")

# Now I am going to identify the title of the popup window:
dlg.print_ctrl_ids()

# If you did the last step correctly, the output will look something like:
#Control Identifiers:
#Dialog - 'Gofer The Application'    (L688, T518, R1065, B1006)
#[u'Dialog', u'Gofer Dialog']
#child_window(title="Warning: ", control_type="Window")
   #|
   #| Image - ''    (L717, T589, R749, B622)
   #| [u'', u'0', u'Image1', u'Image0', 'Image', u'1']
   #| child_window(auto_id="13057", control_type="Image")
   #|
   #| Image - ''    (L717, T630, R1035, B632)
   #| ['Image2', u'2']
   #| child_window(auto_id="13095", control_type="Image")
   #|


# Now using the same title and control type for the popup that we identified
# We check to see if it exists as follows:

if dlg.child_window(title="Warning:", control_type="Window").exists():
    print("Bro, you got a pop-up bro...")

else:
    print("No popup Bro...")