Selector element click do not keep duplicated list element in its data

Web Scraper version: 0.6.4
Microsoft Edge version: 104.0.1293.54
OS: Windows 10

Sitemap:
{"_id":"appartements","startUrl":["Projet neuf - appartements à vendre - ixelles (1050) - Immoweb .pagination__link--next svg","type":"SelectorPagination"},{"delay":0,"id":"select_project","multiple":true,"parentSelectors":["page_link"],"selector":".card--result__title a","type":"SelectorLink"},{"clickElementSelector":".accordion__toggler-icon img","clickElementUniquenessType":"uniqueHTMLText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"select_apatement_links","multiple":true,"parentSelectors":["select_project"],"selector":"li.classified__list-item","type":"SelectorElementClick"},{"delay":0,"id":"select_apartement_unique_link","multiple":true,"parentSelectors":["select_apatement_links"],"selector":"a","type":"SelectorLink"},{"delay":0,"id":"title_maison","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"project_name","multiple":false,"parentSelectors":["select_project"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"project_adresse","multiple":false,"parentSelectors":["select_project"],"regex":"","selector":"div.classified__information--address","type":"SelectorText"},{"delay":0,"id":"project_description","multiple":false,"parentSelectors":["select_project"],"regex":"","selector":".read-toggle__container--collapsed p:nth-of-type(2)","type":"SelectorText"},{"delay":0,"id":"nb_unit","multiple":false,"parentSelectors":["select_project"],"regex":"\d+ appartement *?","selector":".accordion__toggler span","type":"SelectorText"},{"delay":0,"id":"type_bien","multiple":false,"parentSelectors":["select_apatement_links"],"regex":"","selector":"p.small--4","type":"SelectorText"},{"delay":0,"id":"bien_etage","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"","selector":"tr:contains('Étage') td","type":"SelectorText"},{"delay":0,"id":"bien_superficie_habitable","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"\d+","selector":"tr:contains('Surface habitable') td","type":"SelectorText"},{"delay":0,"id":"superficie_terasse","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"\d+","selector":"tr:contains('Surface de la terrasse') td","type":"SelectorText"},{"delay":0,"id":"orientation_terasse","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"","selector":"tr:contains('Orientation de la terrasse') td","type":"SelectorText"},{"delay":0,"id":"bien_vendu","multiple":false,"parentSelectors":["select_apatement_links"],"regex":"","selector":"span.flag-list__text","type":"SelectorText"},{"delay":0,"id":"bien_nb_chambre","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"","selector":"tr:contains('Chambres') td","type":"SelectorText"},{"delay":0,"id":"image_1_projet","multiple":false,"parentSelectors":["select_project"],"selector":"img.classified-gallery__picture","type":"SelectorImage"},{"delay":0,"id":"id_project","multiple":false,"parentSelectors":["select_project"],"regex":"\d+","selector":".classified__header--tools div.classified__header--immoweb-code","type":"SelectorText"},{"delay":0,"id":"project_code_postal","multiple":false,"parentSelectors":["select_project"],"regex":"\d+","selector":"div.classified__information--address","type":"SelectorText"},{"delay":0,"id":"bien_superficie","multiple":false,"parentSelectors":["select_apatement_links"],"regex":"\d+","selector":"p:nth-of-type(3)","type":"SelectorText"},{"delay":0,"id":"etage","multiple":false,"parentSelectors":["select_apatement_links"],"regex":"","selector":"p.small--3","type":"SelectorText"},{"delay":0,"id":"id_appartement","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"\d+","selector":".classified__header--tools div.classified__header--immoweb-code","type":"SelectorText"},{"delay":0,"id":"nb_unit_available","multiple":false,"parentSelectors":["select_project"],"regex":"\d+ disponible *?","selector":".accordion__toggler span","type":"SelectorText"},{"delay":0,"id":"date_publication","multiple":false,"parentSelectors":["select_project"],"regex":"","selector":".classified__section--statistic p","type":"SelectorText"},{"delay":0,"id":"date_disponible","multiple":false,"parentSelectors":["select_project"],"regex":"","selector":"tr:contains('Disponible le') td","type":"SelectorText"},{"delay":0,"id":"bien_prix","multiple":false,"parentSelectors":["select_apartement_unique_link"],"regex":"","selector":".classified__price span[aria-hidden]","type":"SelectorText"}]}

Error Message:
There is no error message. It looks like to be done on purpose.
The problem is that Webscraper does not keep in its data elements with similar text (it is displayed in element preview but not in data preview).
This is a list where the 2 last rows will only account as 1.
image

See the html tags of the lasts rows:

<li class="classified__list-item">

    <div class="grid">

        <p class="grid__item small--2"><span class="flag-list__item flag-list__item--main"><span

                    class="flag-list__text">vendu</span></span>&nbsp;

        </p>

        <p class="grid__item small--4">

            1 chambre

        </p>

        <p class="grid__item small--2">84 m²&nbsp;</p>

        <p class="grid__item small--3">

            Étage 7&nbsp;

        </p> <span class="grid__item small--1 text-right">

            &nbsp;&nbsp;

        </span>

    </div>

</li>

<li class="classified__list-item">

    <div class="grid">

        <p class="grid__item small--2"><span class="flag-list__item flag-list__item--main"><span

                    class="flag-list__text">vendu</span></span>&nbsp;

        </p>

        <p class="grid__item small--4">

            1 chambre

        </p>

        <p class="grid__item small--2">84 m²&nbsp;</p>

        <p class="grid__item small--3">

            Étage 7&nbsp;

        </p> <span class="grid__item small--1 text-right">

            &nbsp;&nbsp;

        </span>

    </div>

</li>

What could I do to resolve this issue? Thanks a lot for your help.