html reports

hi guys, i wanna add extra notes to my exported html reports like test description.

Rassol Dagpin said:

hi guys, i wanna add extra notes to my exported html reports like test description.

Hi Rassol,

I’d suggest using KeywordLogger() as Test Hook before Test Cases execution to add extra notes to your reports, then exported HTML file.

import com.kms.katalon.core.logging.KeywordLogger
KeywordLogger logger = new KeywordLogger()
  logger.logInfo("")

Feel free to post on the Forum in case you have further questions.

Regards,

Liam

cool thanks Liam, will try it out :slight_smile: