robotframework / PythonRemoteServer

Robot Framework remote server implemented with Python
Apache License 2.0
152 stars 83 forks source link

PythonRemoteServer running in background on remote machine, can't interact with Windows desktop applications #80

Open anujteotia opened 2 years ago

anujteotia commented 2 years ago

Hi All,

I'm running PythonRemoteServer on remote machine as a background process, It is unable to interact with any windows desktop application. When I open it in cmd manually, it can interact with GUI and execute the test case.

pekkaklarck commented 1 year ago

How do you try to interact with the app? Notice that questions like this are generally better asked on our Slack or other such support forum listed at robotframework.org. If the problem turns out to be caused by a bug in the remote server, then that should obviously be reported here.

stylpe commented 1 year ago

If by "background process" you mean as a Windows service, that's a well known limitation, they cannot interact with the user's desktop/session directly.

anujteotia commented 7 months ago

@stylpe that is exactly what I meant. If this is a known limitation, then I'll try to find an alternate solution for it.

stylpe commented 7 months ago

Do that :) Here's a reference btw: https://learn.microsoft.com/en-us/answers/questions/27517/is-there-any-workaround-in-win10-to-allow-service

Two options that I know of that you can consider are Task Scheduler (which can run things elevated) or some kind of remoting with Powershell or similar or lower level APIs to start the server on demand.