Pagination don't work, can help?

Hi,

I try but pagination don't work. i try with element click too, but don't work. Can you help us?

Url: http://www.calipage.fr

Sitemap:
{"_id":"calipage","startUrl":["https://www.calipage.fr/"],"selectors":[{"id":"category","type":"SelectorLink","parentSelectors":["_root"],"selector":"li.submenu:nth-of-type(1) a.submenu_link","multiple":false,"delay":0},{"id":"subcategory","type":"SelectorLink","parentSelectors":["category"],"selector":"ul.tree > li > ul > li > a","multiple":true,"delay":0},{"id":"sub2","type":"SelectorLink","parentSelectors":["subcategory"],"selector":"ul.tree > li > ul > li:nth-of-type(2) > ul > li > a","multiple":true,"delay":0},{"id":"sub3","type":"SelectorLink","parentSelectors":["sub2"],"selector":"li:nth-of-type(2) li:nth-of-type(1) li a","multiple":true,"delay":0},{"id":"linkproduits","type":"SelectorLink","parentSelectors":["sub3"],"selector":"div.browseProductContainer a.product_img_link","multiple":true,"delay":"200"},{"id":"titre","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"marque","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"ul.details_fiche_produit a span","multiple":false,"regex":"","delay":0},{"id":"Reference Calipage","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"span.alti_bold","multiple":false,"regex":"","delay":0},{"id":"Reference Constructeur","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"ul.details_fiche_produit li:nth-of-type(3) span","multiple":false,"regex":"","delay":0},{"id":"Conditionnement","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"ul.details_fiche_produit li:nth-of-type(5) span","multiple":false,"regex":"","delay":0},{"id":"prix","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"span.our_price_display span","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["linkproduits"],"selector":"div.rte","multiple":false,"regex":"","delay":0}]}

Hello there!

Please explain what exactly doesn't work? Cause your Sitemap seem to be working on my side.

Hi,
i try make change the page of category (1,2,3,...) but he don't work

Hi!

It seems that this website has 2 same ID elements for pagination. I mean, 2 same pagination bars, that cause WebScraper to malfunction.

In order for it to work properly, you have to remove one of the two pagination bars.

To delete second pagination bar, you have to install Tampermonkey extension, and import script I've made for you below:

// ==UserScript==
// @name         Calipage
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.calipage.fr/catalogue/*
// @grant        none
// @require      http://code.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==

(function() {
    'use strict';

$('[class=pagination]')[2].remove();
    // Your code here...
})();

Once you have it installed and imported script, you can try running example sitemap I've made for you:

{"_id":"calipage-test","startUrl":["https://www.calipage.fr/catalogue/produits/79-classement-et-archivage?slug_category=classement-et-archivage"],"selectors":[{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div#center_column_small","multiple":true,"delay":"2000","clickElementSelector":"[title='page suivante']","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueHTMLText"},{"id":"text","type":"SelectorText","parentSelectors":["pagination"],"selector":"h2","multiple":false,"regex":"","delay":0}]}