Pagination with nth ... with fa icon

I am trying to apply this approach ...

... onto my situation. Here's my current sitemap:

{"_id":"esp","startUrl":["https://www.paginasamarillas.es/search/apartamento/all-ma/barcelona/all-is/barcelona/all-ba/all-pu/all-nc/1"],"selectors":[{"id":"page","parentSelectors":["_root","page"],"paginationType":"auto","selector":".pagination a","type":"SelectorPagination"},{"id":"wrapper","parentSelectors":["page"],"type":"SelectorElement","selector":".item-ip div.box","multiple":true,"delay":0},{"id":"str","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span[itemprop='streetAddress']","multiple":false,"delay":0,"regex":""},{"id":"sip","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span[itemprop='postalCode']","multiple":false,"delay":0,"regex":""}]}

A cannot simply apply "a.contains" as suggested in the shared post, due to the favicon instead of an '>' char.
I wonder how to scrape these address components. I tried different pagination types, only resulting in scraping multiple addresses on a single page.

How should I approach this?

Solved. Apparently (0) I do not need a wrapper & (1) I needed to adjust the main url:

{"_id":"esp2","startUrl":["https://www.paginasamarillas.es/search/apartamento/all-ma/barcelona/all-is/barcelona/all-ba/all-pu/all-nc/[1-10]?what=apartamento&where=barcelona"],"selectors":[{"delay":0,"id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":"div.adress-row","type":"SelectorElement"},{"delay":0,"id":"str","multiple":false,"parentSelectors":["wrapper"],"regex":"^(.[^,])","selector":"span[itemprop='streetAddress']","type":"SelectorText"},{"delay":0,"id":"nums","multiple":false,"parentSelectors":["wrapper"],"regex":",.$","selector":"span[itemprop='streetAddress']","type":"SelectorText"},{"delay":0,"id":"zip","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span[itemprop='postalCode']","type":"SelectorText"}]}