我使用 POI 将输出写入 Excel。我的代码在普通的 Android 应用程序中运行良好。但是当我以 android j 单元运行应用程序时,写入 Excel 功能不起作用。这是我在机器人测试项目中使用的条件
if (solo.getButton("Submit").isShown()){
new TestResult().resultToExcel("/mnt/sdcard/Test_output.xls",0, "TC_memory1", "passed","testcase passed",6);
}
else
{
new TestResult().resultToExcel("/mnt/sdcard/Test_output.xls",0, "TC_memory1", "failed","testcase failed",6);
}
任何人都可以建议一种使用robotium将输出写入excel文件的方法。