Collections:
Latest Runs Summary Report
How to generate a report for Latest Test Run Cases Summary from TestMan database?
✍: FYIcenter.com
You can follow this tutorials to generate
a report for Latest Test Run Cases Summary
from TestMan MySQL database:
1. Create a SQL script file, Report-Latest-Run-Cases-Summary.sql:
-- Report-Latest-Run-Cases-Summary.sql use TestMan; select c.ID, c.Reference, c.Timestamp, c.Name, c.Success, c.Duration, c.Total, c.Failed, c.Target, c.Tester, c.Station from Test_Run_Case c order by c.Timestamp desc limit 0,100;
2. Run Report-Latest-Run-Cases-Summary.sql:
>\fyicenter\mysql\bin\mysql -u fyicenter --html < Report-Latest-Run-Cases-Summary.sql > Run-Cases-Summary.html
3. Open Run-Cases-Summary.html in a Web browser. You see a nice run cases summary report.
⇐ Latest Failed Test Steps Report
2017-11-26, 1931🔥, 0💬
Popular Posts:
How to generate user full names? Test user names are frequently needed in testing applications that ...
How to generate MAC addresses? To help you to obtain some MAC addresses for testing purpose, FYIcent...
How to use HTTP protocol to post an XML message to a server? You can follow this tutorial to post an...
How to generate IPv6 Addresses? To help you to obtain some IPv6 addresses for testing purpose, FYIce...
How to convert hexadecimal encoded data back to binary data (or Hex to Binary Decoding)? Hex to Bina...