Open
Description
aria-label is existed when check from dev tool, but computeAccessibleName($optionItem[0]) get null string instead of actual value. Which make me confused.
cy.get('div.ap-option-item').should('have.attr', 'aria-label','DropdownItemfortesting');
cy.get('div.ap-option-item').then(($optionItem)=>{
const radioAccessibleName = computeAccessibleName($optionItem[0])
expect(radioAccessibleName).to.equal('DropdownItemfortesting')
})