如何在可点击但没有文本属性的主 class 中找到具有文本属性但不可点击的 class 元素
How can I find an element with a class that has a text attrb but is not clickable within a main class that is clickable but has no text attrb
我试图找到一种方法来点击 class/ID 中具有可点击属性 TRUE 但没有其他属性可与其他属性区分开的元素。
所述元素还有另一个 class/ID 具有属性文本,但可点击为 FALSE。
如何将 Selenium 与 Python 一起使用?
如何使用 2 个不同的 类 来基于属性文本进行迭代?
<Class/ID A (android.widget.RelativeLayout)/(com.project.ProjectName:id/itemContainer);
clickable: true; text: none;
<Class/ID B (android.widget.TextView)/(com.project.ProjectName:id/title);
clickable: false; text: BlaBlaBla>>
这是应用程序来源:
有人可以帮我吗?提前致谢。
使用Ancestors
xpath:
//*[@text='BlaBlaBla']//ancestor::*[contains(@resource-id, 'itemContainer')]
我试图找到一种方法来点击 class/ID 中具有可点击属性 TRUE 但没有其他属性可与其他属性区分开的元素。
所述元素还有另一个 class/ID 具有属性文本,但可点击为 FALSE。
如何将 Selenium 与 Python 一起使用?
如何使用 2 个不同的 类 来基于属性文本进行迭代?
<Class/ID A (android.widget.RelativeLayout)/(com.project.ProjectName:id/itemContainer);
clickable: true; text: none;
<Class/ID B (android.widget.TextView)/(com.project.ProjectName:id/title);
clickable: false; text: BlaBlaBla>>
这是应用程序来源:
有人可以帮我吗?提前致谢。
使用Ancestors
xpath:
//*[@text='BlaBlaBla']//ancestor::*[contains(@resource-id, 'itemContainer')]