无法找到赛普拉斯组件内部的定位器
我正在尝试找到下拉箭头定位器。我使用了 cypress cmd - cy.get('.dropdown-arrow').click() 但它给出了元素未找到错误。
这是我的代码
<widgets-bms-scoreboard>
<div class="1">
<div class="wrapper">
<div class="header">
<div class="dropdown">
<div class="dropdown-arrow"> </div>
</div>
</div>
</div>
</div>
</widgets-bms-scoreboard>
I am trying to find the dropdown-arrow locator. I have used the cypress cmd - cy.get('.dropdown-arrow').click()
but it gives element not found error.
Here is my code
<widgets-bms-scoreboard>
<div class="1">
<div class="wrapper">
<div class="header">
<div class="dropdown">
<div class="dropdown-arrow"> </div>
</div>
</div>
</div>
</div>
</widgets-bms-scoreboard>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从评论来看,shadow DOM 是存在的。 来访问其中的元素
您可以通过将其添加到 cypress.json或在测试中
From comments, shadow DOM is present. You can access elements within it either by adding this to cypress.json
or in the test