1

I am currently running my test scripts using a batch file & MS task scheduler. However, I would like to have an email sent out to our product team when the test has completed. Email would include a snapshot of the robot framework test report. Is this possible?

scttech
  • 107
  • 3
  • 12

1 Answers1

1

The report is a set of HTML files which is not easy to open when distributed by email.

Consider setting up a CI server that can not only send out an email but keep the report on a web server. The email then contains a link to the right report.

I'm using Jenkins at the moment which has a plugin for Robot Framework. It keeps the full history of every test run and publishes graphs with the number of tests passing/failing.

Eddy Pronk
  • 6,527
  • 5
  • 33
  • 57