ai didi

java - 如何在原生android和java中查找嵌套元素

转载 作者:行者123 更新时间:2023-12-02 01:51:01 24 4
gpt4 key购买 nike

我正在努力在我的 native android 中找到以下内容的嵌套元素,并想知道如何最好地检索它们:

enter image description here

我的代码无法找到元素:

@FindBy(xpath = "//*[@id='password_complexity_layout']//*[@id='textView']")
public WebElement textView1;

@FindBy(xpath = "//*[@id='password_complexity_layout']//*[@id='textView2']")
public WebElement textView2;

最佳答案

使用下面的代码来查找所有 View 。

LinearLayout ll = …
final int childCount = ll.getChildCount();
for (int i = 0; i < childCount; i++) {
View v = ll.getChildAt(i);
// Do something with v.
// …
}

关于java - 如何在原生android和java中查找嵌套元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57426897/

24 4 0
文章推荐: perl - 如何防止 Windows 捕获 Perl 异常?
文章推荐: arrays - 错误: [$injector:unpr] Unknown provider: $stateProvider <- $state
文章推荐: Java 内置 JSON 解析器
文章推荐: gradle - 使用 Sonarrunner 和 Gradle 从 Jacoco 报告中排除包
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com