-
We are wondering if it is possible to develop a python wrapper that can run multiple selenium tests and keep the output within python for more simple interpretation and error handling. e.g: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The XML report option is probably the best way for simplified results that you can use later. Easy to read the file and parse the data. For that, use --junit-xml=report.xml to get the xml report. Jenkins can also use this file to display results better. |
Beta Was this translation helpful? Give feedback.
The XML report option is probably the best way for simplified results that you can use later. Easy to read the file and parse the data. For that, use --junit-xml=report.xml to get the xml report. Jenkins can also use this file to display results better.