const classafBounce::RadioButton
sys::Obj afBounce::Element afBounce::RadioButton
(HTML Element) Represents a form <input> of type radio.
- allButtons
RadioButton[] allButtons()Returns all radio buttons in the containing form that have the same name as this one.
- checked
Bool checkedGets and sets the
checkedattribute. If setting totrue, all other options are set to false.- checkedButton
RadioButton? checkedButton()Return the currently checked radio button. Returns
nullif no button is checked.- disabled
Bool disabledGets and sets the
disabledattribute.- enabled
Bool enabledGets and sets the
disabledattribute (inverted).- findByValue
RadioButton? findByValue(Obj value)Return the radio button with the given value. Returns
nullif a match could not be found.- makeFromCss
new makeFromCss(Str cssSelector)- name
Str? name()Returns the
nameattribute.- value
Str? valueGets and sets the
valueattribute. Returnsnullif the value has not been set.- verifyChecked
Void verifyChecked()Verify the option is checked.
- verifyNotChecked
Void verifyNotChecked()Verify the option is NOT checked.
- verifyValueEq
Void verifyValueEq(Obj expected)Verify that the hidden element has the given value.