Is there any way to get the visible label name and the customized name either by using aria-label or by using aria-labelledby or any other attribute
For example the below code is saying:-
<div>
<div id="shankar">Name</div>
<input type="text" aria-labelledby="shankar"/>
</div>
<div>
<div id="set-address">Address</div>
<input type="text" aria-label="set-address"/>
</div>
reader:- 1. Name edit text(for first input box) 2. Set-address edit text(for 2nd input box)
I have gone through the link enter link description here
What should i do here to get the message as:- Set-address for Address edit text ? which attribute should i use here ?