I would like to know whether I am able to see how many time my participant click on each page or not.
Not unless you collect that information. On way to do so was to create an internal variable (e.g., IV01_01) and use this PHP code on a specific page:
if (getRoute() == 'next') {
put('IV01_01', (int)value('IV01_01') + 1);
}
For other pages, use additional internal variables (IV01_02, etc.)
Please ignore the warning about having no response for IV01_01 that is displayed in the admin mode when running the page for the first time.