您的位置:軟件測(cè)試 > 開(kāi)源軟件測(cè)試 > 開(kāi)源功能測(cè)試工具 > Selenium
Selenium之報(bào)告生成
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時(shí)間:[ 2016/6/23 15:08:53 ] 推薦標(biāo)簽:Selenium 函數(shù)

  一般我們寫(xiě)的腳本可能覆蓋了較多的測(cè)試項(xiàng),而且可能持續(xù)運(yùn)行了一段時(shí)間,本文將教各位實(shí)現(xiàn)在執(zhí)行完自動(dòng)化腳本后自動(dòng)生成一份美化報(bào)告
  自動(dòng)生成報(bào)告類
  話不多說(shuō),直接上代碼,代碼中會(huì)有詳細(xì)注釋:
  程序清單1:
  package ts.dw.logic;
  import java.io.BufferedWriter;
  import java.io.FileWriter;
  import java.text.DateFormat;
  import java.text.SimpleDateFormat;
  import java.util.Calendar;
  import java.util.GregorianCalendar;
  public class HTMLLOG {
  static GregorianCalendar time = new GregorianCalendar(); 
  public static String filePath = "";
  public static String reportGenerated = "";
  //寫(xiě)入HTML
  public void generateReport()throws Exception{
  reportGenerated="true"; 
  DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");
  Calendar cal = Calendar.getInstance();
  String timeStamp=dateFormat.format(cal.getTime());
  //String path = System.getProperty("user.dir")+"log";
  filePath = "log\"+"Regression_Result-"+"-"+timeStamp+".html";
  FileWriter fstream = new FileWriter(filePath);
  System.out.println("Report's FileName: "+filePath);
  BufferedWriter out = new BufferedWriter(fstream);
  out.write("<html>");
  out.write("<head>");
  //out.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />");
  out.write("<style type='text/css'> "
  + " #summary"
  + " {"
  + " font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;"
  + " width:;"
  + " border-collapse:collapse;"
  + " }"
  + " #summary td, #summary th"
  + " {"
  + " font-size:0.8em;"
  + " border:1px solid #98bf21;"
  + " padding:3px 7px 2px 7px;"
  + " }"
  + " #summary th"
  + " {"
  + " font-size:1.0em;"
  + " text-align:left;"
  + " padding-top:5px;"
  + " padding-bottom:4px;"
  + " background-color:#A7C942;"
  + " color:#ffffff;"
  + " }"
  + " #componentWiseSummary"
  + " {"
  + " font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;"
  + " width:;"
  + " border-collapse:collapse;"
  + " }"
  + " #summary td, #summary th"
  + " {"
  + " font-size:0.8em;"
  + " border:1px solid #98bf21;"
  + " padding:3px 7px 2px 7px;"
  + " }"
  + " #summary th"
  + " {"
  + " font-size:1.0em;"
  + " text-align:left;"
  + " padding-top:5px;"
  + " padding-bottom:4px;"
  + " background-color:#A7C942;"
  + " color:#ffffff;"
  + " }"
  + " #customers"
  + " {"
  + " font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;"
  + " width:;"
  + " border-collapse:collapse;"
  + " }"
  + " #customers td, #customers th"
  + " {"
  + " font-size:0.8em;"
  + " border:1px solid #98bf21;"
  + " padding:3px 7px 2px 7px;"
  + " }"
  + " #customers th"
  + " {"
  + " font-size:1.1em;"
  + " text-align:left;"
  + " padding-top:5px;"
  + " padding-bottom:4px;"
  + " background-color:#A7C942;"
  + " color:#ffffff;"
  + " }"
  + " #customers tr.alt td"
  + " {"
  + " color:#000000;"
  + " background-color:#EAF2D3;"
  + " }"
  + " </style>");
  out.write("</head>");
  out.write("<body text-align:center>");
  out.write("<table width= border=0 cellpadding=2 cellspacing=2>");
  out.write("<tbody>");
  out.write("<tr>");
  out.write("<td>");
  out.write("<table width= border=0 cellpadding=2 cellspacing=2>");
  out.write("<tbody>");
  out.write("<tr>");
  out.write("<td align=center><p class=title><h1>自動(dòng)化測(cè)試報(bào)告-By Kiven</h1></p></td></tr>");
  out.write("</tr>" + "</tbody>" + "</table>" + "<br>");
  /**
  * Creating tables in HTML for Test Status
  */   
  out.write("<table id="customers">");
  out.write("<tr>");
  out.write("<th>Test Case Name</th>");
  out.write("<th>Test Case ID</th>");
  out.write("<th>Test Name and Steps</th>");
  out.write("<th>Test Data</th>");
  out.write("<th>Expected Result</th>");
  out.write("<th>Actual Result</th>");
  out.write("</tr>");
  out.write("</body>");
  out.write("</html>");
  out.flush();
  out.close(); 
  }

上一頁(yè)12下一頁(yè)
軟件測(cè)試工具 | 聯(lián)系我們 | 投訴建議 | 誠(chéng)聘英才 | 申請(qǐng)使用列表 | 網(wǎng)站地圖
滬ICP備07036474 2003-2017 版權(quán)所有 上海澤眾軟件科技有限公司 Shanghai ZeZhong Software Co.,Ltd