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
JavaScript
x
12
12
1
<widgets-bms-scoreboard>
2
<div class="1">
3
<div class="wrapper">
4
<div class="header">
5
<div class="dropdown">
6
<div class="dropdown-arrow"> </div>
7
</div>
8
</div>
9
</div>
10
</div>
11
</widgets-bms-scoreboard>
12
Advertisement
Answer
From comments, shadow DOM is present. You can access elements within it either by adding this to cypress.json
JavaScript
1
4
1
{
2
"includeShadowDom": true
3
}
4
or in the test
JavaScript
1
4
1
cy.get('widgets-bms-scoreboard')
2
.shadow()
3
.find('.dropdown-arrow').click()
4