如何使用 Java 使用 ClassName 及其 Value 来识别元素
HTML:
<div class="MuiGrid-root MuiGrid-grid-xs-12 karutaNameNam css-1uqhpru">Super Heros</div>
如何使用 class = karutaNameNam 及其 Value =“Super Heros”来选择元素。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要将带有文本的元素标识为超级英雄,您可以使用以下任一定位器策略:
cssSelector:
xpath:
理想情况下,可以识别为 WebDriverWait 所需的元素https://stackoverflow.com/a/49749804/7429447">visibilityOfElementLocated 并且您可以使用以下任一定位器策略:
cssSelector:
xpath:
To identify the element with text as Super Heros you can use either of the following locator strategies:
cssSelector:
xpath:
Ideally to identify the element you need to induce WebDriverWait for the visibilityOfElementLocated and you can use either of the following locator strategies:
cssSelector:
xpath:
我们可以在“cssSelector”中的类名之前使用点[.],以便在“findElement”方法中使用 className
We can use dot[.] before class name inside 'cssSelector' for using className inside 'findElement' method