I'm new to a11y, and have a code similar to this structure -
<div class="wrapper" aria-label="this is a group of test elements">
<div aria-hidden="true">test 1</div>
<div aria-hidden="true">test 2</div>
</div>
Behaviour on MAC chrome - Pressing Ctrl+Option+rightArrowKey puts focus on wrapper and VoiceOver reads "this is a group of test elements"
But, on mobile, aria-label is ignored.
Is there any way to focus the parent container and make screen reader read aria-label?