Jun Komoda
Jun Komoda
By the way, have you ever executed the script directly (without `RPyC`) on that virtual machine? Before delving into remote execution, I am concerned about whether the arguments you are...
> app_window_exists() docstring: > > _The same code (without rpyc_runner.modules prefix) launched on the target system doesn't produce any error._ Ah, I see, I overlooked the docstring. I’m sorry.
I summarized what I've been thinking about this issue: --- ### `RPyC` specifications I'm not well-versed in the specifics of `RPyC`, so I'd like to confirm if my understanding is...
Can you confirm that the GUI of the application you want to operate is focused?
Can you try to add calling `set_focus` method of the GUI element (`...Wrapper` object) before the first keystroke?
Maybe `app.top_window().find().set_focus()`. In my project, I do not use `Application`, but use the root window's `children` and `descendants` methods to get the target window. That is why I said "Maybe"....
This is similar to #1304. I don't much use `Application` or `Desktop`, so I didn't notice that this could be a regression. Good point. Can you create a test in...
I plan to investigate this next week during weekdays and make any necessary changes to the production code or add test code if needed. However, those who frequently use `Application`...
This is not a situation where `Application.window` "became uncallable" or "lost the ability to take any keyword arguments". Rather, it should be viewed as a situation where "the acceptable keyword...
It might be necessary to have a warning message conveying that "argument names should be updated to the new ones" as well.