Web Clipper - multiple arrays as columns of table

I’m extracting three different arrays from Release pages on rateyourmusic.com and would like to combine them as columns of a table

track numbers array

clipper variable: {{selector:#tracks_mobile > li > div > span.tracklist_num}}
sample output: [“1”,“2”,“3”,“4”,“5”,“6”,“7”,“8”,“9”,“10”]

track titles array

clipper variable: {{selector:#tracks_mobile > li > div > span.tracklist_title > span > a}}
sample output: [“Midnight Hour”,“Fragile People”,“Mystery Girl”,“Traces of You”,“The Great Unknown”,“Say You Will”,“Heartbreak”,“Lose It All”,“Wasting Time”,“Hate That It’s True”]

track length array

clipper variable: {{selector:#tracks_mobile > li > div > span.tracklist_title > span > span}}
sample output: [“3:01”,“5:12”,“3:27”,“3:49”,“4:43”,“3:19”,“3:34”,“4:48”,“4:21”,“4:08”]

Desired output

# Title Length
1 Midnight Hour 3:01
2 Fragile People 5:12
3 Mystery Girl 3:27
4 Traces of You 3:49
5 The Great Unknown 4:43
6 Say You Will 3:19
7 Heartbreak 3:34
8 Lose It All 4:48
9 Wasting Time 4:21
10 Hate That It’s True 4:08

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.