java-如何单击Robot Framework Selenium中的元素

如何使用Selenium2Library为测试用例编写关键字,以单击没有元素ID的按钮?

以下是html代码.我是硒新手!

<a href="redirect.cfm?app=profile">
<div id="profile" class="icon">
<img style="display:block; margin:0 auto;" src="assets/images/profile.png">
<h3>Profile</h3>
</div>
</a>

我试过了

driver.findElement(By.Xpath("//img[@src='assets/images/profile.png']")).click();

但是得到了错误:

LoginTest
| FAIL | ValueError: Element locator with prefix
‘driver.findElement(By.Xpath(“//img[@ src’ is not supported

解决方法:

如果您实际使用的是Robot Framework,则只需使用确保已导入库的功能即可,然后使用所需的关键字.

明确地说,在“设置”部分中:

Library     Selenium2Library 

并在测试用例或关键字中:

Selenium2library.Click Element    xpath=//img[contains(@src, 'profile.png')]

假设您的xpath是正确的.由于定位器不佳,通常您想要做的是将ID添加到所需的东西中.

上一篇:python-使用Robot Framework截取整个网页的屏幕截图


下一篇:javascript – 如何使用Robot Framework处理提示框?