Scraper only scrapes data for handful of players

The scraper is only scraping about 25 of the players listed here: https://www.pgatour.com/players.html even with a 10,000 ms relay interval and page load delay. Thanks in advance!

Here are the details:

Web Scraper version: 0.4.1
Chrome version: Version 74.0.3729.169 (Official Build) (64-bit
OS: Windows 10 Home Version 1803

Sitemap:
{"_id":"pgaplayas","startUrl":["https://www.pgatour.com/players.html"],"selectors":[{"id":"link","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.directory-item:nth-of-type(1) a","multiple":true,"delay":0},{"id":"data","type":"SelectorTable","parentSelectors":["link"],"selector":".table-wrapper .holder table","multiple":true,"columns":[{"header":"Date","name":"Date","extract":true},{"header":"Tournament Name","name":"Tournament Name","extract":true},{"header":"POS","name":"POS","extract":true},{"header":"Rounds","name":"Rounds","extract":false},{"header":"TotalScore","name":"TotalScore","extract":false},{"header":"To PAR","name":"To PAR","extract":false},{"header":"FedExCup Rank","name":"FedExCup Rank","extract":false},{"header":"FedExCup Points","name":"FedExCup Points","extract":false}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"thead tr:nth-of-type(1)"}]}

Not a bug, just the links have been selected incorrectly. If you click on the 'Element Preview', the scraper will highlight the items that will be scraped. In this case, only the 'A' section have been selected, making your scrape incomplete.

Also, the table does not render on load, so there is a scroll-down selector required.

This should work:

{"_id":"pgaplayas","startUrl":["https://www.pgatour.com/players.html"],"selectors":[{"id":"link","type":"SelectorLink","parentSelectors":["_root"],"selector":".name a","multiple":true,"delay":0},{"id":"data","type":"SelectorTable","parentSelectors":["scroll"],"selector":".table-wrapper .holder table","multiple":true,"columns":[{"header":"Date","name":"Date","extract":true},{"header":"Tournament Name","name":"Tournament Name","extract":true},{"header":"POS","name":"POS","extract":true},{"header":"Rounds","name":"Rounds","extract":false},{"header":"TotalScore","name":"TotalScore","extract":false},{"header":"To PAR","name":"To PAR","extract":false},{"header":"FedExCup Rank","name":"FedExCup Rank","extract":false},{"header":"FedExCup Points","name":"FedExCup Points","extract":false}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"thead tr:nth-of-type(1)"},{"id":"scroll","type":"SelectorElementScroll","parentSelectors":["link"],"selector":"div.wrap","multiple":true,"delay":"2000"}]}