Help Much Needed with Element Click Selector

Hello,

I tried following the video tutorial to create a scraping job using the element click selector, and after hours of trial and error, I cannot seem to get it working properly. I'm trying to get it to click each team tab and scrape the players that appear to no avail. I've tried multiple combinations and in most cases, no data is scraped. With this latest sitemap, I've gotten it to scrape only the first page, but not the others. Can anyone point me in the right direction?

{"_id":"kobbatters","startUrl":["http://eng.koreabaseball.com/Stats/BattingByTeams.aspx"],"selectors":[{"id":"player","type":"SelectorText","parentSelectors":["teamtab"],"selector":"a","multiple":true,"regex":"","delay":0},{"id":"teamtab","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"table","multiple":true,"delay":"500","clickElementSelector":".sub_tab li:nth-of-type(n+2)","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTMLText"}]}

This site uses older tech (aspx) so WS's element click probably won't work properly here.

However, if you hover your mouse over the STATS: Page1/Page2 area, you'll notice there is a URL for page 1 and page 2. That means you can access all stat pages directly by URL .

For example, Doosan page 1 is
http://eng.koreabaseball.com/Stats/BattingByTeams.aspx?codeTeam=OB
and Doosan page 2 is
http://eng.koreabaseball.com/Stats/BattingByTeams02.aspx?codeTeam=OB

The other teams all have similar URLs, only codeTeam=XX is different. So you only need to build a full list of all possible team URLs. Then you can build a sitemap to scrape the stats page. There is no clicker or paginator needed, as you can use multiple team URLs in Start URL.

Note: You should not use the Type: Table here even though it might seem like the obvious choice.