gpt4 book ai didi

java - 如何单击在 ListView - Robotium 自动化中索引在 10 位置的按钮?

转载 作者:太空宇宙 更新时间:2023-11-03 10:51:12 27 4
gpt4 key购买 nike

假设,我有一个 ListView,其中包含 20 个 ListItem。每个项目都有一个按钮,现在我想单击一个位于 ListView 中第 10 个位置的按钮。如何通过 robotium 使其自动化?

最佳答案

试试这样做(不知道行不行)

//get the list view
ListView myList = (ListView)solo.getView(R.id.list);
//get the list element at the position you want
View listElement = myList.getChildAt(10);// myList is local var
//click on imageView inside that list element
solo.clickOnView(solo.getView(listElement.findViewById(R.id.my_button)));// not double eE

希望对您有所帮助!

关于java - 如何单击在 ListView - Robotium 自动化中索引在 10 位置的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12968733/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com