Python Forum
Checking the presence of label using pywinauto module - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Checking the presence of label using pywinauto module (/thread-20078.html)



Checking the presence of label using pywinauto module - Malt - Jul-26-2019

I'm trying to validate the presence of one label using pywinauto module

After launching the application with the help of
 e =pw.application.Application(backend='uia').start(vars.infra_constants['app_path'])
var is my another python dict which is having constants like path and variables and all

After starting the app, I'm skipping the username field and I would like to validate "Field Is Mandatory" label.

Also, I would like to retrieve attributes in any window/dialog.

Genius, please help me