Jun Komoda

Results 353 comments of Jun Komoda
trafficstars

I didn't notice it just by looking at `Application`, but while looking at the `findwindows` side, I think I found the possible cause of the problem. There is an implementation...

I'd also like to mention that backward compatibility was restored in #1253.

Hello! You are welcome! Given my current knowledge, creating test cases to ensure the behavior of `is_checked` is difficult. Apps like the existing `WpfApplication1.exe` used in the tests seem to...

To be honest, I didn't encounter this bug while working with the GUI. I found this bug while investigating how `pywinauto` invokes COM methods, using the type-hinted `comtypes.gen.UIAutomationClient` from https://github.com/enthought/comtypes/pull/490.

On the other hand, in `ButtonWrapper`, there is a `get_toggle_state` that returns `iface_toggle.CurrentToggleState`, and since the tests are passing, I am confident that `CurrentToggleState` is definitely a functioning property present...

I thought preparing an actual GUI would incur significant testing costs. Therefore, I added tests for `is_checked` using the `patch` approach, similar to what's done in other test cases in...

This is one of the most common but difficult problems in GUI Automation. It is very difficult to retrieve "a window that might or might not appear". In my project,...

After seeing the code example, I understand the situation you are facing. In the current latest release version, `0.6.8`, the `wait` method raises a `TimeoutError` with the message "timed out"....

Indeed, it seems that implementing such a wrapper is necessary. The methods of `WindowSpecification` have timeout and retry handling, but they don't provide fine-grained options for setting timeouts separately for...