Reply To: Timers

PennController for IBEX Forums Support Timers Reply To: Timers

#7342
Jeremy
Keymaster

Hi Elias,

As you can see in the Errors tab of the Debug window, your column is named CorrectKey and not CorrectKey (note the space character at the beginning)

You should have a wait command before your test.text, because otherwise the script will rush through the lines even before the participant has had time to type anything in the box, so the test will necessarily fail (because the box is initially empty). Also note that the CorrectKey cells in your CSV table that do have some text in them all start with a space character, and the third one additionally ends with a space characters: those matter, and unless your participant types space characters in the box at the exact same place, the test will fail too; you probably want to remove those space characters from the cells

Once you fix those issues, you should get something functional and close to what you want

Jeremy