inputDescription:
The input condition checks to see if the in focus application control is a textbox control, optionally checking text value, by checking the ARIA role and label.
Parent: all, any, condition, conditions, none, not , wait
Value (simple form): bool specifying if in focus application control must be a textbox control (selection existence and/or contents irrelevant)
Value (key/value form):
contains: string, optional, specifying text that must be contained in control text and/or selected text value (default: null)contents: string, optional, specifying text that must match control text and/or selected text value exactly (default: null)selection: boolean, optional, specifying if selection is required (defaults to false)
contains or contents is non-null, selection forces text comparison to use selected text, otherwise full input control text is used# simple form
input: (boolean)
# simple example
input: true
# key/value form
input:
contains: (string, optional)
contents: (string, optional)
selection: (boolean, optional)
# key/value example
input:
selection: true