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);
}