Reply To: Correct/Incorrect answers in .csv file

PennController for IBEX Forums Support Correct/Incorrect answers in .csv file Reply To: Correct/Incorrect answers in .csv file

#9771
Jeremy
Keymaster

Hi,

You could add this before your Scale element: newVar("CORRECT").global().set(false)

Then right after wait() on the Scale element: .test.selected(row.EXPECTEDANSWER).success( getVar("CORRECT").set(true) )

and finally after the last “record trial data” log line: .log("CORRECT", getVar("CORRECT"))

Jeremy