在Eclipse里调试UiAutomator

2024-02-28 21:38
文章标签 调试 eclipse uiautomator

本文主要是介绍在Eclipse里调试UiAutomator,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

该类来自github开源项目fan2597/UiAutomatorHelper,在此感谢该项目作者,如有侵犯权益,望告知,速删!!!

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;public class UiAutomatorHelper {// 以下参数需要配置,用例集id,用例id,安卓idprivate static String android_id = "3";private static String jar_name = "";private static String test_class = "";private static String test_name = "";// 工作空间不需要配置,自动获取工作空间目录private static String workspace_path;public static void main(String[] args) {}public UiAutomatorHelper() {workspace_path = getWorkSpase();System.out.println("---工作空间:\t\n" + getWorkSpase());}/*** 需求:UI工程调试构造器,输入jar包名,包名,类名,用例名* @param jarName* @param testClass* @param testName* @param androidId*/public UiAutomatorHelper(String jarName, String testClass, String testName,String androidId) {System.out.println("-----------start--uiautomator--debug-------------");workspace_path = getWorkSpase();System.out.println("----工作空间:\t\n" + getWorkSpase());jar_name = jarName;test_class = testClass;test_name = testName;android_id = androidId;runUiautomator();System.out.println("*******************");System.out.println("---FINISH DEBUG----");System.out.println("*******************");}/*** 需求:build 和 复制jar到指定目录* @param jarName* @param testClass* @param testName* @param androidId* @param isRun*/public UiAutomatorHelper(String jarName, String testClass, String testName,String androidId,String ctsTestCasePath){System.out.println("-----------start--uiautomator--debug-------------");workspace_path = getWorkSpase();System.out.println("----工作空间:\t\n" + getWorkSpase());jar_name = jarName;test_class = testClass;test_name = testName;android_id = androidId;buildUiautomator(ctsTestCasePath);System.out.println("*******************");System.out.println("---FINISH DEBUG----");System.out.println("*******************");}// 运行步骤private void runUiautomator() {creatBuildXml();modfileBuild();buildWithAnt();if (System.getProperty("os.name").equals("Linux")) {pushTestJar(workspace_path + "/bin/" + jar_name + ".jar");}else{pushTestJar(workspace_path + "\\bin\\" + jar_name + ".jar");}if (test_name.equals("")) {runTest(jar_name, test_class);return;}runTest(jar_name, test_class + "#" + test_name);}       // 1--判断是否有buildpublic boolean isBuild() {File buildFile = new File("build.xml");if (buildFile.exists()) {return true;}// 创建build.xmlexecCmd("cmd /c android create uitest-project -n " + jar_name + " -t "+ android_id + " -p " + workspace_path);return false;}// 创建build.xmlpublic void creatBuildXml() {execCmd("cmd /c android create uitest-project -n " + jar_name + " -t "+ android_id + " -p " + "\""+workspace_path+ "\"");}// 2---修改buildpublic void modfileBuild() {StringBuffer stringBuffer = new StringBuffer();try {File file = new File("build.xml");if (file.isFile() && file.exists()) { // 判断文件是否存在InputStreamReader read = new InputStreamReader(new FileInputStream(file));BufferedReader bufferedReader = new BufferedReader(read);String lineTxt = null;while ((lineTxt = bufferedReader.readLine()) != null) {if (lineTxt.matches(".*help.*")) {lineTxt = lineTxt.replaceAll("help", "build");// System.out.println("修改后: " + lineTxt);}stringBuffer = stringBuffer.append(lineTxt + "\t\n");}read.close();} else {System.out.println("找不到指定的文件");}} catch (Exception e) {System.out.println("读取文件内容出错");e.printStackTrace();}System.out.println("-----------------------");// 修改后写回去writerText("build.xml", new String(stringBuffer));System.out.println("--------修改build完成---------");}// 3---ant 执行buildpublic void buildWithAnt() {if (System.getProperty("os.name").equals("Linux")) {execCmd("ant");return;}execCmd("cmd /c ant");}// 4---push jarpublic void pushTestJar(String localPath) {localPath="\""+localPath+"\"";System.out.println("----jar包路径: "+localPath);String pushCmd = "adb push " + localPath + " /data/local/tmp/";System.out.println("----" + pushCmd);execCmd(pushCmd);}// 运行测试public void runTest(String jarName, String testName) {String runCmd = "adb shell uiautomator runtest ";String testCmd = jarName + ".jar " + "--nohup -c " + testName;System.out.println("----runTest:  " + runCmd + testCmd);execCmd(runCmd + testCmd);}public String getWorkSpase() {File directory = new File("");String abPath = directory.getAbsolutePath();return abPath;}/*** 需求:执行cmd命令,且输出信息到控制台* @param cmd*/public void execCmd(String cmd) {System.out.println("----execCmd:  " + cmd);try {Process p = Runtime.getRuntime().exec(cmd);//正确输出流InputStream input = p.getInputStream();BufferedReader reader = new BufferedReader(new InputStreamReader(input));String line = "";while ((line = reader.readLine()) != null) {System.out.println(line);saveToFile(line, "runlog.log", false);}//错误输出流InputStream errorInput = p.getErrorStream();BufferedReader errorReader = new BufferedReader(new InputStreamReader(errorInput));String eline = "";while ((eline = errorReader.readLine()) != null) {System.out.println(eline);saveToFile(eline, "runlog.log", false);}       } catch (IOException e) {e.printStackTrace();}}/*** 需求:写如内容到指定的文件中* * @param path*            文件的路径* @param content*            写入文件的内容*/public void writerText(String path, String content) {File dirFile = new File(path);if (!dirFile.exists()) {dirFile.mkdir();}try {// new FileWriter(path + "t.txt", true) 这里加入true 可以不覆盖原有TXT文件内容 续写BufferedWriter bw1 = new BufferedWriter(new FileWriter(path));bw1.write(content);bw1.flush();bw1.close();} catch (IOException e) {e.printStackTrace();}}public void saveToFile(String text,String path,boolean isClose) {File file=new File("runlog.log");       BufferedWriter bf=null;try {FileOutputStream outputStream=new FileOutputStream(file,true);OutputStreamWriter outWriter=new OutputStreamWriter(outputStream);bf=new BufferedWriter(outWriter);bf.append(text);bf.newLine();bf.flush();if(isClose){bf.close();}} catch (FileNotFoundException e1) {e1.printStackTrace();} catch (IOException e) {e.printStackTrace();}}/*** 需求:编译和复制jar包指定文件* @param newPath*/private void buildUiautomator(String newPath) {creatBuildXml();modfileBuild();buildWithAnt();//复制文件到指定文件夹copyFile(workspace_path + "\\bin\\" + jar_name + ".jar", newPath);}/** * 复制单个文件 * @param oldPath String 原文件路径 如:c:/fqf.txt * @param newPath String 复制后路径 如:f:/fqf.txt * @return boolean */ public void copyFile(String oldPath, String newPath) { System.out.println("源文件路径:"+oldPath);System.out.println("目标文件路径:"+newPath);try { int bytesum = 0; int byteread = 0; File oldfile = new File(oldPath); if (oldfile.exists()) { //文件存在时 InputStream inStream = new FileInputStream(oldPath); //读入原文件 FileOutputStream fs = new FileOutputStream(newPath); byte[] buffer = new byte[1444]; int length; while ( (byteread = inStream.read(buffer)) != -1) { bytesum += byteread; //字节数 文件大小 System.out.println(bytesum); fs.write(buffer, 0, byteread); } inStream.close(); } } catch (Exception e) { System.out.println("复制单个文件操作出错"); e.printStackTrace(); } } }

这篇关于在Eclipse里调试UiAutomator的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/756705

相关文章

ASIO网络调试助手之一:简介

多年前,写过几篇《Boost.Asio C++网络编程》的学习文章,一直没机会实践。最近项目中用到了Asio,于是抽空写了个网络调试助手。 开发环境: Win10 Qt5.12.6 + Asio(standalone) + spdlog 支持协议: UDP + TCP Client + TCP Server 独立的Asio(http://www.think-async.com)只包含了头文件,不依

如何在Visual Studio中调试.NET源码

今天偶然在看别人代码时,发现在他的代码里使用了Any判断List<T>是否为空。 我一般的做法是先判断是否为null,再判断Count。 看了一下Count的源码如下: 1 [__DynamicallyInvokable]2 public int Count3 {4 [__DynamicallyInvokable]5 get

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

vscode中文乱码问题,注释,终端,调试乱码一劳永逸版

忘记咋回事突然出现了乱码问题,很多方法都试了,注释乱码解决了,终端又乱码,调试窗口也乱码,最后经过本人不懈努力,终于全部解决了,现在分享给大家我的方法。 乱码的原因是各个地方用的编码格式不统一,所以把他们设成统一的utf8. 1.电脑的编码格式 开始-设置-时间和语言-语言和区域 管理语言设置-更改系统区域设置-勾选Bata版:使用utf8-确定-然后按指示重启 2.vscode

起点中文网防止网页调试的代码展示

起点中文网对爬虫非常敏感。如图,想在页面启用调试后会显示“已在调试程序中暂停”。 选择停用断点并继续运行后会造成cpu占用率升高电脑卡顿。 经简单分析网站使用了js代码用于防止调试并在强制继续运行后造成电脑卡顿,代码如下: function A(A, B) {if (null != B && "undefined" != typeof Symbol && B[Symbol.hasInstan

eclipse安装subversion(SVN)版本控制插件

陈科肇 查看插件更新站点 网址:http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA 网站截图: 根据自己的eclipse版本,选择需要的更新站点. 使用eclipse集成subservion插件 Help > Install New Software…> 等待下载安装插件…

php 7之PhpStorm + Nginx + Xdebug运行调试

操作环境: windows PHP 7.1.10 PhpStorm-2017.2.4 Xdebug 2.5.4 Xdebug helper 1.6.1 nginx-1.12.2 注意查看端口占用情况 netstat -ano //查看所以端口netstat -aon|findstr "80" //查看指定端口占用情况 比如80端口查询情况 TCP 0.0.0.0:8

【2025】基于Python的空气质量综合分析系统的设计与实现(源码+文档+调试+答疑)

博主介绍:     ✌我是阿龙,一名专注于Java技术领域的程序员,全网拥有10W+粉丝。作为CSDN特邀作者、博客专家、新星计划导师,我在计算机毕业设计开发方面积累了丰富的经验。同时,我也是掘金、华为云、阿里云、InfoQ等平台的优质作者。通过长期分享和实战指导,我致力于帮助更多学生完成毕业项目和技术提升。 技术范围:     我熟悉的技术领域涵盖SpringBoot、Vue、SSM、HLMT

VS Code 调试go程序的相关配置说明

用 VS code 调试Go程序需要在.vscode/launch.json文件中增加如下配置:  // launch.json{// Use IntelliSense to learn about possible attributes.// Hover to view descriptions of existing attributes.// For more information,