我正在使用 Robotium 在与 Web 门户交互的 Android 应用程序上运行一些测试。
我想将一些信息保存到文件中;例如,我需要保存从应用程序创建的用户名的 ID,并且我想从 Selenium 读取它以在 Web 门户上运行测试,以验证该用户的网页是否已创建。
可能吗?
有人可以建议我一个解决方案或解决方法吗?
这是一个代码示例,但它不起作用(我想写入一个文件,例如 c:\myworkspace\filename.txt 一个字符串):
public void test_write_file(){
if(!solo.searchText("HOME")){
signIn("39777555333", VALID_PASSWORD);
}
try {
String content = "This is the content to write into file";
File file = new File("filename.txt");
// if file doesnt exists, then create it
if (!file.exists()) {
file.createNewFile();
}
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(content);
bw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
assertTrue(solo.searchText("HOME"));
}
此代码应写入设备上的文件;我的目标是在启动脚本的机器上写入文件;被测应用程序应具有写入存储卡的权限;但我问如何从 Android 环境中出去并获得我的桌面环境。