This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Assess API

test:ready

Fires when the assessment has loaded and is ready for the learner to start. This is usually fired when the learner can see the intro screen of the assesment and the "Start" button is visible.

You would want to be notified about this event firing, because you might want to initialize your own application code before the assessment begins, for example.

Examples

itemsApp.on('test:ready', function () {
    console.log('This code executes when the assessment has loaded and is ready for the learner to start.');
});

Related articles

Was this article helpful?