Jun Komoda
Jun Komoda
Are we using `nose` instead of Python's built-in `unittest` command in our CI because we want to exclude `testall.py`? As previously mentioned, `nose` doesn't work with all Python versions supported...
Can you get the item you are trying to select as a `ListItemWrapper`? You might be able to make it selected by calling the object's `select` method, have you tried...
Is the backend 'uia' or 'win32'? If you pass the `element_info` attribute of the `uia_controls.ListViewWrapper` instance to the constructor of `common_controls.ListViewWrapper`, you can use an object with the win32 backend....
The attributes of `UIAWrapper` and the use of `uia_defines.get_elem_interface` allow us to retrieve the pattern interface. ```py >>> # with Python==3.10, pywinauto==0.6.8 >>> from pywinauto.controls.uiawrapper import UIAWrapper >>> from pywinauto.uia_element_info...
I am not familiar with the tool you are using, `..w Wizard 2.8.0`, but I believe it is something similar to the Inspect.exe tool that comes with the Windows SDK....
I do not have Windows 11. However, in the case of a software I use, I have noticed that the process ID of the `.exe` file that I run and...
Please see also #1373
from https://github.com/pywinauto/pywinauto/issues/817#issuecomment-530854873 > Try to add `visible_only=False` to `child_window(title="Custom Panel", auto_id="Custom Panel", control_type="TabItem")`. Can you try `visible_only=False` in the same way as this?
Changing the `yml` under `workflows/` does not trigger the GHA. Is this due to permissions set on the repository? Not only this PR, by not running the tests on Linux,...
Thank you! First, I'd like to investigate those problems by checking the GHA configuration and manually re-running CI for other PRs.