Python Forum

Full Version: Checking the presence of label using pywinauto module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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