Valentin Kroupkin

Results 40 comments of Valentin Kroupkin

A couple of thoughts. @vasily-v-ryabov, did you manage to reproduce the problem locally, it's hard to solve any issue without the proper scenario. As I understand `ERROR_PARTIAL_COPY` can be returned...

Hi @courtenayt, the links on SWAPY homepage work like a charm for me. Did you try to download exe files from SWAPY releases page: https://github.com/pywinauto/SWAPY/releases ?

That's could be an interesting experiment, I think. It really depends on a framework that your application is based on. I would start with win32 backend. Also, might be a...

It's a quite complicated task that requires a good discussion at least. The design choice to relay on UIA events is arguable as well. But let's say you started it...

Seems to be also reported on StackOverflow: https://stackoverflow.com/questions/57523762/pytest-windows-fatal-exception-code-0x8001010d The error: 0x80010108 - RPC_E_DISCONNECTED reported for many other cases as well. Examples: https://stackoverflow.com/questions/47429782/rpc-e-disconnected-error0x80010108-while-calling-a-callback-aftre-6-mins https://stackoverflow.com/questions/38964478/comexception-the-object-invoked-has-disconnected-from-its-clients For starters, I would try to enable...

@KyleKing , you might want to quickly hack `comtypes.__init__` and replace the log calls with simple prints. The originally reported problem was about COM init/deinit error, the logger errors in...

Thanks for nailing it down. Might worth opening an issue in pytest project?

My guess, it's all about order of unloading imported packages. Apparently, pytest interferes here somehow.

@nixgnef, thanks, that's good article. We've done some work for DPI awareness: https://github.com/pywinauto/pywinauto/blob/51e67932650702d5f3f2d1c7efa91150ac3b2a74/pywinauto/windows/win32functions.py#L752 Seems as it needs to be reviewed again. BTW, the article also mentions new added enum we're...