How to select a text and a link together for each row?

I am trying to scrape this page:

Web Page

And I want to get the title (which is not a link) as text and the link underneath as a link, for each row.

I can get the titles as texts with no problems, and the links underneath... but I have no idea about how to group both items (text and link) in the same row for each document.

Thanks for your help.

Hi!

You can group items by using an Element selector.

Your sitemap:

{"_id":"vatican","startUrl":["http://w2.vatican.va/content/benedict-xvi/es/apost_letters.index.html"],"selectors":[{"id":"grouping","type":"SelectorElement","parentSelectors":["_root"],"selector":"li div.item","multiple":true,"delay":0},{"id":"Title","type":"SelectorText","parentSelectors":["grouping"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Link","type":"SelectorLink","parentSelectors":["grouping"],"selector":"a","multiple":false,"delay":0}]}

Thank you very much... I tried before to use the element selector to understand what it is... but you helped me with that... now I understand it and also solved my problem.

Thank you very much.