Jun Komoda

Results 359 comments of Jun Komoda
trafficstars

I think that SplitButton has a situation where it is difficult to define a unique implementation like a normal button. When you click on the ▼ of SplitButton, depending on...

Hi, I don't have Windows 11, so please keep in mind that this is speculative. It seems that the reason for the problem may be due to the Notepad GUI...

@juharris Your information seems very helpful. Pywinauto can work on Windows 11, but I suspect that the codebase that works on Windows 10 (such as examples in tutorials) may not...

[The version currently available for download from pypi](https://pypi.org/project/pywinauto/0.6.8/)([0.6.8](https://github.com/pywinauto/pywinauto/releases/tag/0.6.8)) does not support Linux. There are plans for implementation as noted in #328.

@tct123 My previous comment was misleading. I apologize. The `Application` is trying to find win32 dependencies because it has a default argument of 'win32', but your environment is Linux, which...

With the `atspi` branch codebase, you may be able to launch Firefox using the following code. ```py from pywinauto.application import Application app = Application(backend="atspi") app.start("/your/env/firefox") ```

#372 is very close to your suggestion. In 1.2.0, `repr(VARIANT.missing)` returns `"VARIANT.missing"`. https://github.com/enthought/comtypes/blob/d1f5cd7e6c73c52f30a36c226cdde21586cdc4b7/comtypes/automation.py#L220-L229 When implementing #486, I noticed that the `VARIANT` with `vt==VT_ERROR` and `_.VT_I4==DISP_E_PARAMNOTFOUND` is not only `VARIANT.missing`. Your...

I don't know whether this will be helpful for this issue, I will share how COM support in other languages has handled `VARIANT`. In PHP, There was an error that...

In ruby, "`VARIANT` with `vt==VT_ERROR` and `_.VT_I4==DISP_E_PARAMNOTFOUND`" is defined as a constant. https://github.com/ruby/ruby/blob/813a5f4fc46a24ca1695d23c159250b9e1080ac7/ext/win32ole/win32ole_variant.c#L727-L736

I think that `VARIANT.missing` is a class attribute used by `comtypes` to get default values for parameters, rather than a process in the COM layer. I will later write a...