Auto.js常用控件整理
2021-01-02 11:27
标签:star ttext count 报错 超时 tst str 加好友 类型 launchApp(‘名字‘); //通过app名字启动app应用 launch(‘app包名’); //通过包名启动app应用 sleep(random(1000,5000)); //随机等待1到5秒 swipe(x1,y1,x2,y2,time); //滑动屏幕(time表示滑动的时间) click(x,y); //单点击坐标,, click("加好友"); //点击"加好友"按钮 press(x,y,time); //按住坐标,time表示时间好像是毫秒 home(); //回到桌面 back(); //返回上一步 app.uninstall(‘包名‘); //卸载app getpackagename(‘应用名‘); //通过应用名获取app包名 toast("hallo word"); //在手机toast提示 toastLog(‘hallo word‘); //提示信息+log记录 log(‘hallo word‘); //记录log text("属性值").findOne().parent().click(); //parent通过子控件查找父控件,常用于子控件不能点击,而通过子控件查找到父控件完成点击 text("属性值").findOne().childCount(); //获取控件中子控件的数量 text("进入游戏").find().click(); //点击进入游戏(先查找再点击) text("进入游戏").findOne(3000).click(); //点击进入游戏___查询超时就报错,,(text()是完全匹配) textContains("手机").find().click(); //匹配页面包含手机的元素 textStartsWith("手机").find().click(); //匹配以"手机"开头的元素 textEndsWith("手机").find().click(); //匹配以"手机"结尾的元素 text("xxxx").find(); //按控件文本查找,,也可使用findOne() desc("xxxx").find(); //按描述信息查找 id("xxxx").find(); //按元素id查找 className("xxxx").find(); //按元素类型查找 atextMatches("\\d+"); //以正则匹配 setText("城南花已开") ; //在光标处输入数据 alert("标题","内容"); //对话框输出 Auto.js常用控件整理 标签:star ttext count 报错 超时 tst str 加好友 类型 原文地址:https://www.cnblogs.com/chen-xia/p/13666723.html