Hi
I have items in pages web page. each page has image and text but the problem when I right click on the element I cant find href which I want to collect :

The CSS selector is
div.flex-item:nth-child(1) > a:nth-child(1)
CSS path is very long
xpath is :
/html/body/div[1]/section[3]/div/div/div/div/div/div/div[2]/div[1]/a
The link I want to extract has this form:
<div>
<a class="mylink" href="https://mysite/item1">
<img>
<p> text </p>
</a>
</div>
the pagination look like this: 1 2 3 it is javascript so no loading.

Should I select list or table ? What I should write in these parameters to get all href links ?
Thanks