BrijeshKrishnan

Results 1 comments of BrijeshKrishnan

```python app = pywinauto.Application(backend="uia") app.connect(path="C:\abc\Exe\Service\PPl.exe") app.window_(title=u'PPi', visible_only=False).restore() window = app.window_(title=u'PPi') # window.print_control_identifiers() radioButton = window.child_window(auto_id="powerModeRadioButton", control_type="RadioButton") radioButton.get_toggle_state() ``` ```python Traceback (most recent call last): File "C:/Projects/TestAutomation/Bricks/Interface/UI/UIApp.py", line 119, in radioButton.get_toggle_state()...