我们如何在calabash android中生成报告?我查看了如何生成报告的“黄瓜食谱”一书。但那并没有完全帮助我。 我想生成登录失败原因的报告: 例如: 1)用户输入有效凭证并尝试登录 2)但是,由于server_error / user_not_found或一些例外,登录失败。登录失败时,我从服务器收到错误xml / statusCode。
如何使用calabash中的xml / status代码生成报告? 请帮忙!!
答案 0 :(得分:18)
使用此命令执行测试:
calabash-android run <apkfile>.apk --format html --out reports.html
答案 1 :(得分:1)
<%
date = Time.now.strftime('%m_%d-%H:%M:%S')
default_report = "./reports/output_#{date}.html"
default_rerun = "./rerun.txt"
%>
common: NO_STOP='1'
rerun_out: -f rerun -o <%= default_rerun %>
html_report: -f html -o <%= default_report %>
run: -p common -p rerun_out -p html_report
这是我的calabash-android配置文件配置,您可以将它放在您的calabash android项目下的./.config/cucumber.yml文件中。 使用以下命令将测试结果同时导出到rerun.txt文件和./reports/output_#{date}.html文件中:
calabash-android run *.apk -p run
答案 2 :(得分:0)
对于HTML报告
> calabash-android run <apkfile>.apk --format HTML --out
对于JSON报告
> calabash-android run <apkfile>.apk --format JSON --out
这些是黄瓜中的otehr格式,
答案 3 :(得分:0)
对于 HTML 报告,请使用以下命令:
calabash-android run $ {APKFile} -f html -o test-result.html