4👍
✅
From comments, shadow DOM is present. You can access elements within it either by adding this to cypress.json
{
"includeShadowDom": true
}
or in the test
cy.get('widgets-bms-scoreboard')
.shadow()
.find('.dropdown-arrow').click()
Source:stackexchange.com