TestCafe - 如何点击“选择班级”当身份证不可用时
由于没有 ID,因此无法单击此下拉列表,怎么可能我点击这个选择班级?
Unable to click on this dropdown list since it does not have an ID, how could I click on this select class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用类名、类名和元素名称来定位元素。
您必须掌握定位策略来定位网页中的元素。所有元素都不会有 ID。
参考:
食谱:测试 < ;选择>元素
You can use the classname, classname with the element name to locating the element.
You will have to master location strategies to locate elements in the web pages. All elements will not have IDs.
Reference :
Recipe : Test <Select> Elements
请参阅此文档了解如何使用选择器选择元素。
由于您的下拉菜单有一个 html 属性,您可以使用 Selector.withAttribute 方法。
Refer to this documentation to learn how to use selectors to select elements.
Since your dropdown has an html attribute you can use Selector.withAttribute Method.