单击 Robotium 中的链接
如何让 Robotium 单击页面中的特定链接?
How can I make Robotium click on a particular link in a page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何让 Robotium 单击页面中的特定链接?
How can I make Robotium click on a particular link in a page?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
您应该尝试单击链接中的锚文本。
例如,如果链接显示 www.google.com,您可以执行以下操作:
它对我有用。它应该也适合你。
You should try clicking the the anchor text in the link.
For example, if the link says www.google.com you can do this:
It is working for me. It should work for you too.
您将通过使用得到解决方案
You will get solution by using
我建议你安装 TestDroid eclipse 插件,它看起来像 Selenium IDE,但对于 Robotium,显然
I recommended you to install TestDroid eclipse plugin, it seems like Selenium IDE but for Robotium, obviously
您可以使用solo.clickOnText(),因为您的目的只是单击将由此解决的链接。
我已经通过 solo.clickOnText() 解决了很多问题,
谢谢
You can use solo.clickOnText() as you purpose is only to click on the link which will be solved by this.
I have fixed so many issues of mine by solo.clickOnText()
Thanks
在 Robotium 中,我们有以下函数来单击特定文本
独奏.clickOnText(字符串str);
例子:
字符串str =“www.google.com”;
独奏.clickOnText(str);
In robotium we have the below function to click on the particular text
solo.clickOnText(String str);
example:
String str="www.google.com";
solo.clickOnText(str);
您可以使用库中Testdroid提供的clickOnHtmlElement方法,该方法扩展了robotium-solo。
http://docs.testdroid.com/_pages/extsolo.html
You can use clickOnHtmlElement method provided by Testdroid in library, which extends robotium-solo.
http://docs.testdroid.com/_pages/extsolo.html