Comment #2 on issue 1490 by pekka.klarck: `Process` library cannot be used via remote interface
http://code.google.com/p/robotframework/issues/detail?id=1490

The approach to make result objects work transparently via the remote interface discussed in the previous comment is unfortunately complicated to implement. Especially updating the remote server and documenting how custom objects are supported is a rather big task.

A simpler solution to the problem is making it possible to get results from the Process library directly. The library already now keeps track of the result objects, and we could easily add a keyword to get certain results.

Basically we could have a keyword like this:

    def get_process_result(rc=False, stdout=False, stderr=False):
        # ...

and it could be used like:

    ${rc} =    Get Process Result    rc=yes
    ${rc}    ${stdout} =    Get Process Result    rc=yes    stdout=yep

We need to think should this work only with the latest executed process or should it be possible to get also older results.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to