How to iterate through dropdown and select elements on each page?

Hi there!

Love your tool, just having a few problems understanding it.

I'm trying to iterate through the dropdown on the top left on this page, https://www.nrlsupercoachstats.com/

I want to iterate through the select#dropdown1 for each player and then grab the

Name (inside the dropdown),

The image ( ),

as well as the the 'Average Score' located under 2019

I really have no idea where to start and I'd love some help/advice please

Regards,

Phil

as a fellow new user, I would also love to know how to do this. Have you been able to figure it out?

This should work. Page load delay 5500:

{"_id":"forum-nrlsupercoachstats","startUrl":["https://www.nrlsupercoachstats.com/"],"selectors":[{"id":"Click all coaches","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"body","multiple":true,"delay":"4000","clickElementSelector":"select#dropdown1 > option","clickType":"clickOnce","discardInitialElements":"discard","clickElementUniquenessType":"uniqueText"},{"id":"Name","type":"SelectorText","parentSelectors":["Click all coaches"],"selector":"select#dropdown1 > option:checked","multiple":false,"regex":"","delay":0},{"id":"Image","type":"SelectorImage","parentSelectors":["Click all coaches"],"selector":"div[style] > img[alt]","multiple":false,"delay":0},{"id":"Avg Score 2019","type":"SelectorText","parentSelectors":["Click all coaches"],"selector":"tbody > tr:contains('Avg Score') > td[width=\"20%\"]:nth-of-type(4)","multiple":false,"regex":"","delay":0}]}

1 Like