I want to write a custom method to generate HTML test reports in Katalon Studio whenever a test suite executes. I don't want to use the Basic report plugin available in Katalon store.
Do I need to write the code in Test suite file using the - @SetupTestCase @TearDownTestCase
If you want to use the hooks for the Test Suite you will need to use
@SetUp
.Something like this could work:
You will need to play around with the groovy file methods to learn exactly how to create files and write to files but this is the way to go if you wish to create a custom report.