How can I measure how my product tour is performing?

Integrate the callback function to see how users progress through your Product Tours so you can improve engagement.

1Answer

With product tours’ step completion stats, it’s easy to view which steps your users engage with, and where they drop off.

The count of total steps and completed steps for each product tour can be fetched via a call back function [faqbotFinishOnboardingNotification]

You can define the following callback function at the time of integration and receive the 'step stats value' whenever a user closes the product tour:

function faqbotFinishOnboardingNotification(tour)
{
    console.log("Completed Steps" + tour.completedSteps);
    console.log("Total Steps" + tour.totalSteps);
}

Did this answer your question?
...