Hello,
I am trying to improve our results processing and I encountered an issue I am not sure how to solve.
To automatically send an email with suite results and other relevant information, I need to dig out the information first. I need to access the Suite metadata from ***Settings***
section. However, using the robot.api, I only accessed the metadata names, not their values.
E.g.:
There’s the following line in the output.xml
<meta name="test_branch">my_testing_branch</meta>
Using Python & robot.api
for metadata in ExecutionResult(“output.xml”).suite.metadata:
print(type(metadata))
Is there a way to access the value of the metadata named test_branch, which is my_testing_branch using robot.api (RF 5.0.1)?