如何使用Appium自动化Google Play更新应用程序弹出窗口
我正在将代码行写为:
driver.findElement(By.id("com.android.vending:id/0_resource_name_obfuscated")).click();
//Clicking on No Thanks button - resourceid take from Ui Automator
但是Appium对此行没有响应,并给出找不到元素的错误。 “使用给定的搜索参数无法在页面上放置元素”
有任何帮助吗?预先感谢
I am writing the code line as:
driver.findElement(By.id("com.android.vending:id/0_resource_name_obfuscated")).click();
//Clicking on No Thanks button - resourceid take from Ui Automator
But appium does not respond to this line and give error that no element found.
"An element could not be located on the page using the given search parameters"
Any help? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有敲打,而是使用了Back button
driver.navigate()。back();
查询已通过替代方法解决。
Instead of tapping on No Thanks, I used back button
driver.navigate().back();
Query has been resolved with alternate method.
尝试使用等待方法:
Try to use wait methods :