uncheck
The command to deselect checkboxes and radio buttons.
Syntax
Element.uncheck() -> Element
Element.uncheck(allow_selected=False) -> ElementUsage
# uncheck a radio button
py.get("[type='radio']").uncheck()# Errors, 'get' yields an Element that is not a checkbox or radio button
py.get("a").uncheck()Arguments
Yields
Raises
Examples
Last updated