elm-program-test icon indicating copy to clipboard operation
elm-program-test copied to clipboard

should aria-hidden subtrees be ignored by clickButton, fillIn, etc?

Open avh4 opened this issue 2 years ago • 0 comments

<body>
    <div aria-hidden=true>
        <button>A</button>
    </div>
</body>
ProgramTest.clickButton "A"

Should the clickButton fail because its inside an aria-hidden=true element? I think that doesn't really make sense because isn't the button still visible on the page (even though hidden from accessibility tools) unless there is also CSS applied to hide it visually?

avh4 avatar Feb 22 '22 23:02 avh4