morrolinux / subito-it-searcher

searcher for subito.it
100 stars 36 forks source link

Feature request: Remove sold items #21

Open corradopetrelli opened 1 year ago

corradopetrelli commented 1 year ago

Description

When an item is sold remove from list or the item should not be added to the list (this in the case a new item is already sold).

Advice

Use the class item-sold-badge for this purpose.

image

Structure html (simplified)

<div class="...upper-data-group">
    <div class="... item-key-data ...">
        <h2 class="... size-normal ...">
            Blablabla
        </h2>
        <div class="feature-row ...">
            <p class="...price....">
                290&nbsp;€
                <span class="... item-sold-badge ...">
                    Venduto
                </span>
            </p>
        </div>
    </div>
</div>