Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在robotium4.3中,如何点击一个webelement。到目前为止,我可以通过 locationx 和 locationy 点击一个 webelement。但它不适用于 webid 或其他参数。有没有人可以帮我解决这个问题?TKS!!
Solo 类中有方法 clickOnWebElement。有可用于查找元素的 By 类。例如:
solo.clickOnWebElement(By.className("button"));
通过实施你可以在这里找到