I’m reaching out to gather insights on free and open-source platforms for comprehensive test report analysis. Specifically, I’m looking for a solution that can help me:
Aggregate Robot Framework test reports from multiple test runs
Identify and track the most frequently failing test cases over extended periods
Provide visual insights into test performance trends
Be open-source/free for use
Currently, I’ve been manually reviewing reports, which is time-consuming and lacks systematic trend analysis. I’m hoping someone can recommend:
Existing open-source tools
Custom scripting approaches
Community-developed solutions for parsing Robot Framework XML/JSON reports
About second link, with RF API you can easily extract infos from xml file (with Visitor).
Then feed for example a database (MYSQL or PostGre), with Grafana to display and customize views.
i am using 2 listeners, report portal (so I can log attachments, like traces, screenshots / artifacts generally) a and elastic with kibana so I can have a better visibility on longer periods of time , elapsed time of steps, api responses in time etc are better to view here than in report portal. so I took advantage of both. the listener for elastic is quite straitght forward , just send what ever you need to elastic on robot events. i log suite statues, test step statuses and possible error messages, tags, elapsed time and so on)