產生html的報告:
1,cucumber user_register/ --format html --out=/var/www/features_report.html
2,在瀏覽器中輸入 http ://127.0.0.1/features_report.html 查看報告。
3, 別人要瀏覽器中輸入 http://10.0.2.99/features_report.html ==>10.0.2.99是我執行測試程式的測試機,也就是測試報告會存放在10.0.2.99的/ var/www/目錄下。
4, 設定config/cucumber.yml 檔案, 這個檔案放在support目錄下。
輸入:
drhel31_cucumber_report: --format progress --format html --out=/var/www/drhel31_cucumber_report.html
drhel21_cucumber_report: --format progress --format html --out=/var/ www/drhel21_cucumber_report.html
5, cucumber user_register/ -p drhel31_cucumber_report 執行階段會先辨識cucumber裡的yml設定。
這個report 在哪台機子運行就會產生在哪台機上的 /var/www/目錄下,且名為drhel31_cucumber_report.html
以上是cucumber產生html的報告實作步驟的詳細內容。更多資訊請關注PHP中文網其他相關文章!