Describe the issue/error/question
Hi all,
Just discovered n8n, very happy with my first steps with this great tool.
But I am scraping the following website for concerts: Agenda — EKKO
To get the list of gig items I use the HTML Extract node with the following CSS selector:
“div.pb-8 > a” and as return type I choose HTML as I need to loop over each gig. And I choose Return Array is True.
The different gigs wth html are shown in array in output but without the a element itself and its attributes.
There is some info in the A element (like attributes href and data-filter-value) which I also want to use.
How can I solve this?
I could of course set all the various values in separate keys in this HTML Extract but that feels a bit tricky as then all those keys are ‘only’ linked by index or am I missing something?