Extracting using a drop down and next button on premier league

How do I store all the data in the table by making sure the next button is clicked and at the same time get data for all the seasons from the dropdown list? I figured out a way to resolve the next button issue, but am still unable to use the drop down list.
thanks.

Url: https://www.premierleague.com/stats/top/players/ontarget_scoring_att

Sitemap:
{"_id":"plstats","startUrl":["https://www.premierleague.com/stats/top/players/ontarget_scoring_att"],"selectors":[{"id":"elements","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"td","multiple":true,"delay":"1000","clickElementSelector":"div.paginationBtn.paginationNextContainer","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"rank","type":"SelectorText","parentSelectors":["elements"],"selector":"parent","multiple":false,"regex":"","delay":0},{"id":"seasons","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.dropDown.active li:nth-of-type(n+2)","multiple":false,"delay":0,"clickElementSelector":"div.paginationBtn.paginationNextContainer","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"}]}

Sure, this example scrape will select Chelsea, and get its table:

{"_id":"premier_league","startUrl":["https://www.premierleague.com/stats/top/players/ontarget_scoring_att"],"selectors":[{"id":"choose_chelsea","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".open ul","multiple":false,"delay":"2500","clickElementSelector":"li[data-option-name='Chelsea']","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"shots_on_target_table","type":"SelectorTable","parentSelectors":["_root"],"selector":"table","multiple":true,"columns":[{"header":"Rank","name":"Rank","extract":true},{"header":"Player","name":"Player","extract":true},{"header":"Club","name":"Club","extract":true},{"header":"Nationality","name":"Nationality","extract":true},{"header":"Stat","name":"Stat","extract":true}],"delay":0,"tableDataRowSelector":".statsTableContainer tr","tableHeaderRowSelector":"thead tr"}]}