PythonRemoteServer icon indicating copy to clipboard operation
PythonRemoteServer copied to clipboard

Robot Framework remote server implemented with Python

Results 39 PythonRemoteServer issues
Sort by recently updated
recently updated
newest added

I would like to upload/download files with the remote server. So I can avoid using the ssh library and setting up a 2nd connection for it. Any chance to support...

I use a tunnel to connect to the the python remote server on some target. ``` Import Library Remote http://xxx.xxx.xxx.xxx:12345 WITH NAME MyRemoteLibrary ``` This import takes about 1 minute...

We have #83 about adding `get_keyword_types` that will add basic argument conversion support. Basically RemoteServer will return type information to Robot and it will do argument conversion based on it....

enhancement
prio-high

**Issue** When using a custom Python library via `RobotRemoteServer`, automatic type conversion seems to fail. All arguments are passed as `str`. When using the same library nominally, automatic type conversion...

enhancement
prio-high

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...

# Summary Addresses concerns from PR #47 , by 1. Allowing backward compatibility with previous interface which only supported a single class while still supporting a list of classes. 2....

The last PR to be merged was in 2022 and we issues that have been open for 11 years.

Hi, I’d like to suggest adding support for pass-by-reference in PythonRemoteServer. This feature would enable more efficient handling of complex or large data structures between keywords. Is this something that...

As of Robot Framework 3.2, an argument with a default value can be represented as a `('name', 'default')` tuple. Doing so allows Robot Framework to do automatic argument type conversion...