|
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: |
Answered by
mdmintz
Jan 10, 2023
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. |
2 replies
Answer selected by
nico599
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.