appium java简单实例_Appium创建一个Note的实例

近来通过Appium,Robotium等几个框架去了解移动平台自动化测试。Appium官方实例是使用ContactManager.apk,而Robotium使用的是SDK自带的Notepad.apk,为了方便比较,在了解Appium的同时把实例修改成跟Robotium一致的Notepad.apk并记录下其中一个Case如下:

1.package majcit.com.AppiumDemo;

2.

3.import io.appium.java_client.AppiumDriver;

4.import io.appium.java_client.TouchAction;

5.

6.import java.io.File;

7.import java.net.URL;

8.import java.util.List;

9.

10.import org.junit.Test;

11.import org.junit.After;

12.import org.junit.Before;

13.import org.openqa.selenium.By;

14.import org.openqa.selenium.WebElement;

15.import org.openqa.selenium.remote.DesiredCapabilities;

16.import static org.hamcrest.Matchers.*;

17.import static org.hamcrest.MatcherAssert.assertThat;

18.

19./**

20. * Unit test for simple App.

21. */

22.public class NoetPadTest {

23. /**

24. * Create the test case

25. *

26. * @param testName name of the test case

27. */

28. private AppiumDriver driver;

29.

30. @Before

31. public void setUp() throws Exception {

32. // set up appium

33. File classpathRoot = new File(System.getProperty("user.dir"));

34. File appDir = new File(classpathRoot, "apps");

35. File app = new File(appDir, "NotePad.apk");

36. DesiredCapabilities capabilities = new DesiredCapabilities();

37. capabilities.setCapability("deviceName","Android");

38. //capabilities.setCapability("platformVersion", "4.2");

39. capabilities.setCapability("platformName", "Android");

40. //capabilities.setCapability("app", app.getAbsolutePath());

41. capabilities.setCapability("appPackage", "com.example.android.notepad");

42. capabilities.setCapability("appActivity", "com.example.android.notepad.NotesList");

43. //capabilities.setCapability("appActivity", ".NotesList");

44. driver = new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);

45. }

46.

47. @After

48. public void tearDown() throws Exception {

49. driver.quit();

50. }

51.

52. @Test

53. public void addNoteCNTitle() throws InterruptedException{

54. //Evoke the system menu option

55. driver.sendKeyEvent(82);

56.

57.

58. try {

59. Thread.sleep(1000);

60. }catch(Exception e) {

61. System.out.println(e.getMessage());

62. }

63.

64. //Click on the "Add Note" menu entry

65. WebElement el = driver.findElement(By.name("Add note"));

66. el.click();

67.

68. //Enter the note info and save it

69. WebElement text = driver.findElementByClassName("android.widget.EditText");

70. text.sendKeys("Note 1");

71.

72. driver.sendKeyEvent(82);

73. el = driver.findElement(By.name("Save"));

74. el.click();

75.

76. //Find out the new added note entry

77. List entries = driver.findElements(By.className("android.widget.TextView"));

78.

79. WebElement targetEntry = null;

80. for(WebElement entry : entries) {

81. if(entry.getText().equals("Note1")) {

82. targetEntry = entry;

83. break;

84. }

85. }

86.

87. //Long press on the men entry to call out the context menu options

88. TouchAction action = new TouchAction(driver);

89. action.longPress(targetEntry);

90. //action.moveTo(we,240,10);

91. action.perform();

92.

93. //Find out the menu entry of "Delete"

94. WebElement optionListView = driver.findElement(By.className("android.widget.ListView"));

95. List options = optionListView.findElements(By.className("android.widget.TextView"));

96. WebElement delete = null;

97. for (WebElement option:options) {

98. if (option.getText().equals("Delete")) {

99. delete = option;

100. break;

101.

102. }

103. }

104.

105. assertThat(delete,notNullValue());

106.

107. //Delete the menu entry

108. delete.click();

109.

110. try {

111. Thread.sleep(1000);

112. }catch(Exception e) {

113. System.out.println(e.getMessage());

114. }

115.

116.

117.

118. }

119.

120.}

本文地址:https://blog.csdn.net/qq_31344287/article/details/108732301

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393368.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Lync Server 2013无法共享PPT故障排错处理

前段时间帮助朋友看了一个关于Lync Server 2013无法共享PPT的问题,共享PPT时报如下错误: 日志截图如下: 原因如下前端服务器未关联Ofice web Application服务器,关联即可,如下: 关联完成后,如下…

leetcode733. 图像渲染(bfs)

有一幅以二维整数数组表示的图画,每一个整数表示该图画的像素值大小,数值在 0 到 65535 之间。 给你一个坐标 (sr, sc) 表示图像渲染开始的像素值(行 ,列)和一个新的颜色值 newColor,让你重新上色这幅图像…

chrome扩展程序_如何创建Chrome扩展程序

chrome扩展程序by Erika Tan谭咏麟 如何创建Chrome扩展程序 (How to create a Chrome Extension) In this article, I will be teaching you how to make a Chrome Extension of your own. I’m basing it off of lessons learned while creating TalkToMe, a Chrome Extensio…

对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)

7、PASCAL语言(一)一门通,门门通 在计算机学习问题排行版上,有一个问题绝对是稳居榜首,每次提出都能在各大论坛掀起一股顶帖风暴,而各大网站的每个网络大牛,都会收到无数学院小弟发来弱弱的提问…

leetcode110. 平衡二叉树(递归)

给定一个二叉树,判断它是否是高度平衡的二叉树。本题中,一棵高度平衡二叉树定义为:一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。示例 1:给定二叉树 [3,9,20,null,null,15,7]3/ \9 20/ \15 7 返回 true 。代码 /*** Defi…

spring配置文件注解方式引入的两种方式

一、#{beanID[propertiesName]}方式 <bean id"propertyConfigurer" class"org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name"fileEncoding" value"utf-8" /><property name&…

vsc 搜索特定代码_特定问题的通用解决方案:何时编写代码以及何时编写代码...

vsc 搜索特定代码by Rina Artstain通过丽娜阿斯特斯坦 特定问题的通用解决方案&#xff1a;何时编写代码以及何时编写代码 (Generic solutions to specific problems: when to write some code and when to just do it) There is a traditional story that tells of a rabbi w…

java手动编译jar包_Maven 手动添加第三方依赖包及编译打包和java命令行编译JAVA文件并使用jar命令打包...

一&#xff0c;实例:新建了一个Maven项目,在eclipse中通过 build path –> configure path….将依赖包添加到工程中后&#xff0c;eclipse不报错了。但是用Maven命令 mvn clean compile 时出错如下&#xff1a;原因是在eclipse中添加了 exteneral jar后&#xff0c;还需要在…

SQL like

确定给定的字符串是否与指定的模式匹配。模式可以包含常规字符和通配符字符。模式匹配过程中&#xff0c;常规字符必须与字符串中指定的字符完全匹配。然而&#xff0c;可使用字符串的任意片段匹配通配符。与使用 和 ! 字符串比较运算符相比&#xff0c;使用通配符可使 LIKE 运…

计划备份mysql数据库

1:mysql是我们使用最多的数据库&#xff0c;如果在日常中正确的对mysql数据进行备份&#xff0c;下面我们就来做这事&#xff0c;通过脚本来实现##########################################################################################################################…

leetcode1333. 餐厅过滤器

给你一个餐馆信息数组 restaurants&#xff0c;其中 restaurants[i] [idi, ratingi, veganFriendlyi, pricei, distancei]。你必须使用以下三个过滤器来过滤这些餐馆信息。 其中素食者友好过滤器 veganFriendly 的值可以为 true 或者 false&#xff0c;如果为 true 就意味着你…

3.27下午

转载于:https://www.cnblogs.com/bgd140201228/p/6628194.html

2019春季学期进度报告(十四)

课上花费时间&#xff1a;5h 课下花费时间&#xff1a;6h 学会的新内容&#xff1a;阿里云服务器的购买&#xff0c;websockt入门。 代码量&#xff1a;200h 转载于:https://www.cnblogs.com/Aduorisk/p/11056750.html

rxjs 怎么使用_使用RxJS Observables进行SUPER SAIYAN

rxjs 怎么使用I loved DragonBall Z as a kid, and still love it as an adult. 我从小就爱DragonBall Z&#xff0c;但从小到大仍然喜欢它。 Among the ludicrous number of transformations, the original Super Saiyan remains my favorite. 在可笑的转换数量中&#xff0c…

java编程石头剪刀布_java 开发的石头,剪刀,布的游戏 demo

[java]代码库/** 创建一个类Game&#xff0c;石头&#xff0c;剪刀&#xff0c;布的游戏。*/public class Game {/*** param args*/String[] s {"石头","剪刀","布"};//获取电脑出拳String getComputer(int i){String computerGuess s[i];retur…

JList的基本操作

1.初始化并添加元素 DefaultListModel leftListModelnew DefaultListModel(); String[] items Model.getPairs(); for (int i0; i<items.length; i) { leftListModel.add(i, items[i]); } JList leftLstnew JList(leftListModel); 2.删除所有元素 leftListModel.remove…

请求WebApi的几种方式

请求WebApi的几种方式目前所了解的请求WebAPI的方式有通过后台访问api 和通过js 直接访问api接口 首先介绍下通过后台访问api的方法&#xff0c;可以使用HttpClient的方式也可以使用WebRequest的方式 1、HttpClient的方式 &#xff08;1&#xff09;Get请求 string url "…

Django第三篇

前端反向解析 应用场景&#xff1a;通过访问a路由&#xff0c;到达a的对应视图函数&#xff0c;函数到达对应的前端a标签 a标签的路径是b路由&#xff0c;如果我们在后端改变b路由的路径&#xff0c;那么a标签便无法访问 到b路由&#xff0c;只能手动在前端改变a标签的路径&…

leetcode792. 匹配子序列的单词数

给定字符串 S 和单词字典 words, 求 words[i] 中是 S 的子序列的单词个数。 示例: 输入: S “abcde” words [“a”, “bb”, “acd”, “ace”] 输出: 3 解释: 有三个是 S 的子序列的单词: “a”, “acd”, “ace”。 class Solution {public int numMatchingSubseq(Strin…

react context_使用React Context API-入门

react contextLets use the React Context API to change theme in an app!让我们使用React Context API更改应用程序中的主题&#xff01; 但是首先&#xff0c;一些背景 &#xff01; &#xff1f; (But first, some context! ?) Ok terrible puns aside lets have a look …