码迷,mamicode.com
首页 > 移动开发 > 详细

Appium命令笔记之一

时间:2017-08-21 00:11:14      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:appium中的aapt

    查看APK包名与其他信息命令:

aapt l <你的apk文件>,这个命令就是查看apk内容


下面详细说下 aapt dump 这个查询命令

基本格式为   aapt dump [] <apk文件>

这里[ ]选择可以有以下几种:

badging              Print the label and icon for the app declared in APK
permissions      Print the permissions from the APK.
resources           Print the resource table from the APK.
configurations   Print the configurations in the APK.
xmltree              Print the compiled xmls in the given assets.
xmlstrings         Print the strings of the given compiled xml assets.


例如:

C:\Users\lw>aapt d badging Desktop\zhihu.apk |findstr "package launchable-activity"

package: name=‘com.zhihu.android‘ versionCode=‘507‘ versionName=‘4.54.1‘ platformBuildVersionName=‘7.1.1‘

launchable-activity: name=‘com.zhihu.android.app.ui.activity.MainActivity‘  label=‘鐭ヤ箮‘ icon=‘‘


//启动另外一个APP

public void startapp()

{

//启动该apt

driver.startActivity("com.zhihu.android","‘com.zhihu.android.app.ui.activity.MainActivity");

}


使用场景:

1、用例之前的切换

2、场景切换使用

本文出自 “知止内明” 博客,请务必保留此出处http://357712148.blog.51cto.com/6440370/1957817

Appium命令笔记之一

标签:appium中的aapt

原文地址:http://357712148.blog.51cto.com/6440370/1957817

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!