Hi all,
I had implemented small functionality in Python file.
----------------------
import os
import shutil
import sys
n1=15
n2=10
sum=n1+n2
print(sum)
-----------------------
I Run Python file in robot framework (RIDE).
${result}= Run Process Python D:\\Second.py alias=first
Log ${result.rc}=
Log ${result.stdout}=
should be equal ${result.stdout} 25
${effect} get Process Result first
${object} get Process Object first
-------------
In Run window i can see following output
Waiting for process to complete
Process completed
${result} = <result object with rc 0>
0=
25=
=
${effect} <result object with rc 0>
${object} <result object with rc 0>
------------
i have doubt in following
1)<result object with rc 0> what it means
2)how result.rc is printing 0
3)how get process result,get process object also printing result with object rc0
could you please help in identifying these