写点什么

技术分享 | app 自动化测试(Android)-- 特殊控件 T 识别 oast

  • 2022 年 9 月 05 日
    北京
  • 本文字数:1946 字

    阅读完需:约 6 分钟

本文节选自霍格沃兹测试开发学社内部教材 Toast 是 Android 系统中的一种消息框类型,它属于一种轻量级的消息提示,常常以小弹框的形式出现,一般出现 1 到 2 秒会自动消失,可以出现在屏幕上中下任意位置。它不同于 Dialog,它没有焦点。Toast 的设计思想是尽可能的不引人注意,同时还向用户显示信息希望他们看到。 测试 APP 下载地址: https://github.com/appium/sample-code/raw/master/sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk 首先将上面地址的 apk 包下载到本地,并安装到模拟器中;在模拟器中打开 API Demos,依次点击“Views”-“Popup Menu”-“Make a Popup”-“Search”,就会弹出消息提示框,如图:

编辑切换为居中

添加图片注释,不超过 140 字(可选)

上图中 “Clicked popup menu item Search” 就是 Toast,但它通常在页面上停留的时间只有 2 秒左右,通过 Appium Inspector 一般不容易获取到这个元素。

获取 Toast

在模拟器中打开 API Demos 应用,依次点击 “Views”-“Popup Menu”-“Make a Popup”-“Search”,查看页面 Toast 元素。

示例代码如下:

# 设置 capabilitiescaps = {}caps["platformName"] = "Android"caps["appPackage"] = "io.appium.android.apis"caps["appActivity"] = ".ApiDemos"#必须使用uiautomator2框架caps["automationName"] = "uiautomator2"caps["deviceName"] = "hogwarts"# 与Appium Server 建立连接driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)# 设置隐式等待driver.implicitly_wait(5)
# 点击 Viewsdriver.find_element_by_accessibility_id("Views").click()# 滑动页面TouchAction(driver).press(380, 1150)\ .move_to(380, 150).release().perform()# 点击 `Popup Menu` 项目driver.find_element_by_xpath( "//*[@content-desc='Popup Menu']").click()# 点击 `Make a Popup`driver.find_element_by_xpath( "//*[@content-desc='Make a Popup!']").click()# 点击 'Search'driver.find_element_by_xpath("//*[contains(@text,'Search')]").click()toastXPath = "//*[@class='android.widget.Toast']"#打印 toastXPathprint(driver.find_element_by_xpath(toastXPath))#打印 toastXPath 获取的 textprint(driver.find_element_by_xpath(toastXPath).text)


@BeforeAllpublic static void setUp() throws MalformedURLException { DesiredCapabilities desiredCapabilities = new DesiredCapabilities(); desiredCapabilities.setCapability("platformName", "Android"); desiredCapabilities.setCapability("appPackage", "io.appium.android.apis"); desiredCapabilities.setCapability("appActivity", ".ApiDemos"); desiredCapabilities.setCapability("automationName", "uiautomator2"); desiredCapabilities.setCapability("deviceName", "hogwarts");
URL remoteUrl = new URL("http://127.0.0.1:4723/wd/hub"); driver = new AndroidDriver(remoteUrl, desiredCapabilities); driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);}
@Testpublic void toastTest() { //点击 Views driver.findElement(MobileBy.AccessibilityId("Views")).click(); //滑动页面 TouchAction action = new TouchAction(driver); PointOption pressPointOne = PointOption.point(380, 1150); PointOption movePointOne = PointOption.point(380, 150); action.press(pressPointOne).moveTo(movePointOne).release(); //点击 `Popup Menu` 项目 driver.findElement(By.xpath("//*[@content-desc='Popup Menu']")).click(); //点击 `Make a Popup` driver.findElement(By.xpath("//*[@content-desc='Make a Popup!']")).click(); //点击 'Search' driver.findElement(By.xpath("//*[contains(@text,'Search')]")).click(); By toastXPath = By.xpath("//*[@class='android.widget.Toast']"); //打印 toastXPath System.out.println(driver.findElement(toastXPath)); //打印 toastXPath 获取的 text System.out.println(driver.findElement(toastXPath).getText());}
复制代码

这里定位 Toast 使用了 Xpath 表达式进行定位,因为 Toast 的 class 属性比较特殊,在当前页面上一般会出现一次 class=“android.widget.Toast” 的元素,所以使用 Xpath 定位方式搭配隐式等待就可以很轻松的可以定位到。 查看执行结果

更多资料点击下方

https://qrcode.ceba.ceshiren.com/link?name=article&project_id=qrcode&from=infoQ&timestamp=1662366626&author=xueqi

用户头像

社区:ceshiren.com 2022.08.29 加入

微信公众号:霍格沃兹测试开发 提供性能测试、自动化测试、测试开发等资料、实事更新一线互联网大厂测试岗位内推需求,共享测试行业动态及资讯,更可零距离接触众多业内大佬

评论

发布
暂无评论
技术分享 | app自动化测试(Android)-- 特殊控件 T识别oast_自动化测试_测吧(北京)科技有限公司_InfoQ写作社区