Hi Paul,
You need to use Execute JavaScript action to record the time:
- Script in the slide On Load event to save the start time of the quiz:
prez.myQuizStartTime = prez.elapsedTime();
- Script in each radio button On Check to calculate the user time to answer the quiz:
prez.myQuizAnswerTime = prez.elapsedTime() - prez.myQuizStartTime;
- To include the answer time (
prez.myQuizAnswerTime) to the report, you can see this topic: Custom Variables in Report
Regards