Denis Matiychuk
Denis Matiychuk
Reuse `app` variable for one process owned different top level windows. One `app` may be used for all windows owned by one process. For instance: ``` python from pywinauto.application import...
Python 3 can automatically solve a lot on unicode problems. Blocker now - there are no native WXPython for Python 3. Should try Phoenix - port WX for Pyhon 3....
By user @changhyuk91from [issue78](https://github.com/pywinauto/SWAPY/issues/78#issuecomment-194097309) os.path.normpath(process_cmdline) AttributeError: 'NoneType' object has no attribute 'startswith' > > > Hi guys I just started programming(5days), so I really need help getting this problem fixed....
If target app is running with Administrator rights, pywinauto requires the higher rights too. Propose to an user for SWAPY's rights elevation in such cases.
It would be quite useful to post a property access directly in the code. For instance, click on the `Texts` property and get the next code: ``` code notepad =...
At least for a `tab item` rectangle property can be found. ``` python notepad = app[u'Notepad++'] systabcontrol = notepad.Tab rectangle = systabcontrol.GetTabRect(tab_index) ``` Add the property for all sub items(ListView,...
Properties/children may change after an action. For instance: a tree items still disabled after `Expand` on the top element has been performed.
A lot of bugs/tasks depend on problem when the code generator counters is reset after a pywinauto object has been re-wrapped by SWAPY's proxy. Although the code manger is a...
It can be quite convenient to send keys to controls. Even for not text controls (to access the hotkey). New extended action may be added to the Actions menu which...