DEV Community

Sebastian Pazmay
Sebastian Pazmay

Posted on

CSV Output Files in Robot Framework

When trying to improve an existing testing framework, I came up to the point where the output log.html file was not compatible with the rest of the test automation framework already in place.

This "old" test automation framework NEEDED to be fed with a CSV file. Therefore any addition to it has to be compliant with this rule.

That is how I found this solution in which after each test case a CSV file is "filled". There are two different approaches using python and robot framework open-source libraries.

The code can be found HERE. It has acceptable documentation but it is still only a POC.

Top comments (0)