PennController for IBEX › Forums › Support › help on ID information › Reply To: help on ID information
May 8, 2023 at 6:05 am
#10521
Jeremy
Keymaster
Hi,
My bad, the class \w
will only capture ASCII based characters. Maybe use \S
instead to capture any non-space character: .wait(getTextInput("ID").test.text(/\S/))
Jeremy