传递给Appium服务器以开启相应安卓Automation会话的Capabilities的几点说明

2024-04-28 02:05:31

Desired Capabilities是由客户端发送给Appium服务器端的用来告诉服务器去启动哪种我们想要的会话的一套键值对集合。当中也有一些键值对是用来在自动化的过程中修改服务器端的行为方式的。比如,我们可以把键为platformName的capability的值设置成iOS来告诉服务器我们想要开启的是一个iOS的会话,而非Anddroid的会话。或者我们可以把键为safariAllowPopups的capability的值设置成true来确保在Safari自动化会话的过程中,我们可以使用JavaScript来弹出一个新窗口。要查看Appium支持的完整的capabilities列表,请查看capabilities doc或以下文档。

请注意以下列表中高亮的项,这些都是必填的项目。当中有以下几点需要注意的:

  • deviceName :我无论填写什么值,在我的HTC Incredable S机器上都可以跑通测试,但是这项又是必须要填的。我用得Appium版本是V1.2.2。
  • app :如果填写了,appium会在目标机器上安装测试目标app,如果没有的话,会根据appActivity和appPackage去目标机器查找目标app
  • appPackage :  可以通过sdk自带工具aapt获得
  • appActivity:同样可以通过以上工具获得。有一点需要注意的是,值可以附加packageName,也可以不附加,也就是说以下两种填写方式都是对的“.NotesList"和”com.example.android.notepad.NotesList"

Appium server capabilities

Capability Description Values
automationName Which automation engine to use Appium (default) or Selendroid
platformName Which mobile OS platform to use iOSAndroid, or FirefoxOS
platformVersion Mobile OS version e.g., 7.14.4
deviceName The kind of mobile device or emulator to use iPhone SimulatoriPad SimulatoriPhone Retina 4-inchAndroid EmulatorGalaxy S4, etc…
app The absolute local path or remote http URL to an .ipa or .apk file, or a .zip containing one of these. Appium will attempt to install this app binary on the appropriate device first. Note that this capability is not required for Android if you specify appPackage and appActivity capabilities (see below). Incompatible with browserName. /abs/path/to/my.apk or http://myapp.com/app.ipa
browserName Name of mobile web browser to automate. Should be an empty string if automating an app instead. ‘Safari’ for iOS and ‘Chrome’, ‘Chromium’, or ‘Browser’ for Android
newCommandTimeout How long (in seconds) Appium will wait for a new command from the client before assuming the client quit and ending the session e.g. 60
autoLaunch Whether to have Appium install and launch the app automatically. Default true truefalse
language (Sim/Emu-only) Language to set for the simulator / emulator e.g. fr
locale (Sim/Emu-only) Locale to set for the simulator / emulator e.g. fr_CA
udid Unique device identifier of the connected physical device e.g. 1ae203187fc012g
orientation (Sim/Emu-only) start in a certain orientation LANDSCAPE or PORTRAIT
autoWebview Move directly into Webview context. Default false truefalse
noReset Don’t reset app state before this session. Default false truefalse
fullReset (iOS) Delete the entire simulator folder. (Android) Reset app state by uninstalling app instead of clearing app data. On Android, this will also remove the app after the session is complete. Default false truefalse

ANDROID ONLY

Capability Description Values
appActivity Activity name for the Android activity you want to launch from your package MainActivity.Settings
appPackage Java package of the Android app you want to run com.example.android.myAppcom.android.settings
appWaitActivity Activity name for the Android activity you want to wait for SplashActivity
appWaitPackage Java package of the Android app you want to wait for com.example.android.myAppcom.android.settings
deviceReadyTimeout Timeout in seconds while waiting for device to become ready 5
androidCoverage Fully qualified instrumentation class. Passed to -w in adb shell am instrument -e coverage true -w com.my.Pkg/com.my.Pkg.instrumentation.MyInstrumentation
enablePerformanceLogging (Chrome and webview only) Enable Chromedriver’s performance logging (default false) truefalse
androidDeviceReadyTimeout Timeout in seconds used to wait for a device to become ready after booting e.g., 30
androidDeviceSocket Devtools socket name. Needed only when tested app is a Chromium embedding browser. The socket is open by the browser and Chromedriver connects to it as a devtools client. e.g., chrome_devtools_remote
avd Name of avd to launch e.g., api19
avdLaunchTimeout How long to wait in milliseconds for an avd to launch and connect to ADB (default 120000) 300000
avdReadyTimeout How long to wait in milliseconds for an avd to finish its boot animations (default 120000) 300000
avdArgs Additional emulator arguments used when launching an avd e.g., -netfast
useKeystore Use a custom keystore to sign apks, default false true or false
keystorePath Path to custom keystore, default ~/.android/debug.keystore e.g., /path/to.keystore
keystorePassword Password for custom keystore e.g., foo
keyAlias Alias for key e.g., androiddebugkey
keyPassword Password for key e.g., foo
chromedriverExecutable The absolute local path to webdriver executable (if Chromium embedder provides its own webdriver, it should be used instead of original chromedriver bundled with Appium) /abs/path/to/webdriver
specialChromedriverSessionArgs Custom arguments passed directly to chromedriver in chromeOptions capability. Passed as object which properties depend on a specific webdriver. e.g., {'androidDeviceSocket': 'opera_beta_devtools_remote',}
autoWebviewTimeout Amount of time to wait for Webview context to become active, in ms. Defaults to 2000 e.g. 4
intentAction Intent action which will be used to start activity (default android.intent.action.MAIN) e.g.android.intent.action.MAINandroid.intent.action.VIEW
intentCategory Intent category which will be used to start activity (default android.intent.category.LAUNCHER) e.g. android.intent.category.LAUNCHERandroid.intent.category.APP_CONTACTS
intentFlags Flags that will be used to start activity (default 0x10200000) e.g. 0x10200000
optionalIntentArguments Additional intent arguments that will be used to start activity. See Intent arguments e.g. --esn <EXTRA_KEY>--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE>, etc.
unicodeKeyboard Enable Unicode input, default false true or false
resetKeyboard Reset keyboard to its original state, after running Unicode tests with unicodeKeyboard capability. Ignored if used alone. Default false true or false

IOS ONLY

Capability Description Values
calendarFormat (Sim-only) Calendar format to set for the iOS Simulator e.g. gregorian
bundleId Bundle ID of the app under test. Useful for starting an app on a real device or for using other caps which require the bundle ID during test startup e.g. io.appium.TestApp
launchTimeout Amount of time in ms to wait for instruments before assuming it hung and failing the session e.g. 20000
locationServicesEnabled (Sim-only) Force location services to be either on or off. Default is to keep current sim setting. true orfalse
locationServicesAuthorized (Sim-only) Set location services to be authorized or not authorized for app via plist, so that location services alert doesn’t pop up. Default is to keep current sim setting. Note that if you use this setting you MUST also use the bundleId capability to send in your app’s bundle ID. true orfalse
autoAcceptAlerts Accept iOS privacy access permission alerts (e.g., location, contacts, photos) automatically if they pop up. Default is false. true orfalse
nativeInstrumentsLib Use native intruments lib (ie disable instruments-without-delay). true orfalse
nativeWebTap (Sim-only) Enable “real”, non-javascript-based web taps in Safari. Default: false. Warning: depending on viewport size/ratio this might not accurately tap an element true orfalse
safariAllowPopups (Sim-only) Allow javascript to open new windows in Safari. Default keeps current sim setting true orfalse
safariIgnoreFraudWarning (Sim-only) Prevent Safari from showing a fraudulent website warning. Default keeps current sim setting. true orfalse
safariOpenLinksInBackground (Sim-only) Whether Safari should allow links to open in new windows. Default keeps current sim setting. true orfalse
keepKeyChains (Sim-only) Whether to keep keychains (Library/Keychains) when appium session is started/finished true orfalse
localizableStringsDir Where to look for localizable strings. Default en.lproj en.lproj
processArguments Arguments to pass to the AUT using instruments e.g., -myflag
interKeyDelay The delay, in ms, between keystrokes sent to an element when typing. e.g., 100

以下是一个配置例子:

    public void setUp() throws Exception {         // set up appium         File classpathRoot = new File(System.getProperty("user.dir"));         File appDir = new File(classpathRoot, "apps");         File app = new File(appDir, "NotePad.apk");         DesiredCapabilities capabilities = new DesiredCapabilities();         capabilities.setCapability("deviceName","iPad Simulator");         //capabilities.setCapability("platformVersion", "4.2");         capabilities.setCapability("platformName", "Android");         capabilities.setCapability("app", app.getAbsolutePath());         //capabilities.setCapability("appPackage", "com.example.android.notepad");         //capabilities.setCapability("appActivity", "com.example.android.notepad.NotesList");         //capabilities.setCapability("appActivity", ".NotesList");         driver = new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);     }
 

作者

自主博客

微信

CSDN

天地会珠海分舵

http://techgogogo.com

服务号:TechGoGoGo

扫描码:

©著作权归作者所有:来自51CTO博客作者zhukev的原创作品,如需转载,请注明出处,否则将追究法律责任

android capabilities appium

0

收藏

上一篇:(转载)AppiumDriver... 下一篇:Appium环境配置笔记2 --...

noavatar_middle.gif
zhukev

117篇文章,7W+人气,0粉丝

noavatar_middle.gif

Ctrl+Enter 发布

发布

取消

推荐专栏更多

5366d1f50328a62facbf5db1d91c319a.png

VMware vSAN中小企业应用案例

掌握VMware超融合技术

共41章 | 王春海

¥51.00 346人订阅

订   阅

9d82eccb4e3c371eaeac41193bbef757.png

基于Kubernetes企业级容器云平台落地与实践

容器私有云平台实践之路

共15章 | 李振良OK

¥51.00 595人订阅

订   阅

45862f289339dc922ffda669fd74ad9b.jpg

网工2.0晋级攻略 ——零基础入门Python/Ansible

网络工程师2.0进阶指南

共30章 | 姜汁啤酒

¥51.00 1557人订阅

订   阅

629650e188ddde78b213e564c2e9ebff.jpg

负载均衡高手炼成记

高并发架构之路

共15章 | sery

¥51.00 506人订阅

订   阅

dc6736c5fd50474b5df8b76b040e3d03.jpg

带你玩转高可用

前百度高级工程师的架构高可用实战

共15章 | 曹林华

¥51.00 461人订阅

订   阅

猜你喜欢

我的友情链接 最新HTML BroadcastChannel API引荐 简述centOS 7系统用户和组的管理及配置 解析DELL R710服务器迁移操作内容 开学季出大事:某教育局丢失3台虚拟机 EVA4400存储虚拟机+数据库数据恢复成功案例 服务器数据恢复通用方法+服务器分区丢失恢复案例 在CentOS7上部署squid缓存服务器及代理功能 EMC 5400服务器raid阵列瘫痪数据恢复成功案例 服务器数据恢复案例 / raid5阵列多块硬盘离线处理方法 华为存储服务器卷丢失数据恢复成功案例 斐讯K3C路由器无需刷机用vlmcsd搭建KMS服务器激活Windows&office 高校服务器虚拟化——高校数据中心建设 【长文+图片】HP FC MSA2000服务器瘫痪数据恢复过程 服务器断电瘫痪数据丢失后恢复数据的过程 华为5800服务器raid阵列数据恢复成功案例 【长文慎点】IBM X3850服务器删除并重建虚拟机恢复过程 HP EVA4400服务器RAID信息丢失数据恢复方法 Apache 工作模式的优化深入 部署PXE远程安装服务 并实现Kickstart无人值守安装

f92360e227f9d91cdff7ea95120630ef.png
left-qr.jpg

扫一扫,领取大礼包

0

分享

qr-url?url=https%3A%2F%2Fblog.51cto.com%2Ftechgogogo%2F1608454

zhukev

noavatar_middle.gif

转载于:https://blog.51cto.com/techgogogo/1608454

传递给Appium服务器以开启相应安卓Automation会话的Capabilities的几点说明相关推荐

  1. 安卓调用系统相机录像并上传到后端服务器

    安卓调用系统相机录像并上传到后端服务器 写在前面 一.录像上传的思路 二.添加相关权限 三.按钮设置监听,调用相机录像并回调 1.按钮设置监听: 2.调用代码 3.回调代码(划重点奥) 最后的最后: ...

  2. 武侠q传服务器维护,《武侠Q传》就服务器人多过载致歉玩家赞有诚意

    厂商特供稿,以下内容并不代表网易言论 10月12日,<武侠Q传>就服务器过载问题,在官网.官方论坛等多个平台,向广大玩家公开致歉,并提供优厚的"无法登陆补偿",以显诚意 ...

  3. Appium 服务器初始化参数(Capability)

    记录下appium文档关键字,方便查找: https://appium.io/docs/cn/writing-running-appium/caps/#xcuitestios 键 描述 值 autom ...

  4. 上传/下载远程服务器文件

    需求说明   有时候我们需要对我们远程服务器的文件进行上传/下载功能,或者是我们拿到国外的Chicken了需要上传我们的Trojan来进行长久控制,再或者我们需要方便的拿到我们远程服务器上某某文件/文 ...

  5. java矩阵传递给r_从JAVA调用R得到卡方统计和p值

    我在JAVA中有两个4 * 4矩阵,其中一个矩阵包含观察计数和其他预期计数. 我需要一种自动的方法来计算这两个矩阵之间的卡方统计量的p值; 但是,就我所知,JAVA没有这样的功能. 我可以通过将两个矩 ...

  6. (0081)iOS开发之无限后台定位并上传数据到服务器

    关键词:ios 后台持续定位 iOS 后台的理解 // http://blog.csdn.net/u013773524/article/details/52153917 // http://blog. ...

  7. 如何将命令行参数传递给Node.js程序?

    我有一个用Node.js编写的Web服务器,我想使用一个特定的文件夹启动. 我不确定如何在JavaScript中访问参数. 我正在像这样运行节点: $ node server.js folder 这是 ...

  8. 如何将本地文件通过终端上传到linux服务器 /服务器/阿里云

    scp -P 端口 c://xxxx.txt user@ip:/home/root 注意: -P 大写 -i 公钥 (我是将文件上传到阿里云) (1)在本地的终端下,而不是在服务器上.在本地的终端上才 ...

  9. html文件已传入服务器,把html文件上传到云服务器

    把html文件上传到云服务器 内容精选 换一换 为了实现通过NAT Server可使用SSH协议跳转到SAP HANA节点的功能,以及SAP HANA节点和NAT Server互相通过SSH协议跳转的 ...

  10. php向bat中传递参数,php-将参数传递给PHPUnit

    php-将参数传递给PHPUnit 我开始编写PHPUnit测试,并且希望这些测试可以在开发人员的机器以及我们的服务器上运行. 开发人员计算机的设置与服务器不同,甚至彼此不同. 要在这些不同的地方运行 ...

最新文章

  1. 王恩哥院士:信息化发展进程中,科学、基础研究和技术、应用都是关键
  2. 基于图结构的计算分析和实现
  3. 2019区块链行业指南
  4. Spring Bean的获取与实例化
  5. 树状数组求逆序对_区间和的个数(树状数组)
  6. Mac下搭建cocos2d 和cocos2d -x 环境
  7. VS在win32平台与mysql链接_visual C++如何与MySQL在windows下建立连接
  8. BZOJ 1025: [SCOI2009]游戏
  9. 商务部回应中兴被罚:坚决反对美国用国内法制裁中企
  10. python中遇到的问题及解决方法_自己编程中遇到的Python错误和解决方法汇总整理...
  11. xlsx文件打开乱码_excel表格文件打开都是乱码怎么解决
  12. 三菱PLC定位控制1
  13. SqlServer数据库(可疑)解决办法4种
  14. 华为交换机命令基础入门学习,菜鸟也能看得懂!
  15. 微信开发者工具 公众号网页调试的调试器没了?
  16. 谷物割捆一体农用车系统整体设计
  17. Linux7中安装DNS服务,CentOS7/RHEL7搭建DNS服务器
  18. 电脑一夜之间变卡的问题
  19. C++程序设计基础之(第三章)函数
  20. CSS-背景颜色 | background-color

热门文章

  1. STM8和STM32开发总结
  2. 免费简单的为域名申请SSL证书
  3. OpenStack虚拟机冷迁移与热迁移
  4. ESP32-C3 SPI salve示例错误
  5. Android Study之跳转自启动管理页
  6. 数学模型预测模型_改进著名的nfl预测模型
  7. Android虚拟机的理解和内存管理
  8. python最长的单词判断_Python 找出英文单词列表(list)中最长单词链
  9. python期末考试是怎么考的_python期末考试复习
  10. Flutter技术简介