"Round trip", selected, radio button"
"Full name, edit text"
"No preference, Preferred seat type, collapsed, combo box"
"Search, button"
Screen announce | |
---|---|
Role (element role) | radio button, edit text, combo box, button |
Name (Label: visible label & text alternative) | Round trip, full name, preferred seat type, search |
Value | No preference |
State | selected, collapsed |
Solution #1
<label>
<input type="checkbox" checked name="jLetter">
Receive promotional offers?
</label>
// "Receive promotional offers, checked, checkbox"
Solution #2
<input type="checkbox" checked name="letter"*>
<label for="letter"*>Receive promotional offers?</label>