Hello,
Here's the staring URL: https://www.draftkings.com/draft/lineup/create/34871
For each player, I am trying to scrape their game log table. The sitemap (JSON is below) is designed to bring up a popup link when a player is selected, click the game log tab and then scrape the table. I'm having 2 issues:
- The scraper only picks up the players in view (when you scroll down, more players appear that needed to be scraped)
- No data is being scraped even though the data previews seem to be working.
Any solutions or webscraper cannot be used for this site?
{"_id":"dktest","startUrl":["https://www.draftkings.com/draft/lineup/create/34871"],"selectors":[{"id":"name","type":"SelectorPopupLink","parentSelectors":["_root"],"selector":".PlayerPicker_grid span.PlayerNameCell_player-name-cell-text","multiple":true,"delay":0},{"id":"table","type":"SelectorTable","parentSelectors":["name"],"selector":"table#wrte-ataglance","multiple":true,"columns":[{"header":"G","name":"Games","extract":true},{"header":"K","name":"Kills","extract":true},{"header":"A","name":"Assists","extract":true},{"header":"D","name":"Deaths","extract":true},{"header":"CS","name":"CSscores","extract":true},{"header":"FPPG","name":"FPPG","extract":true}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"tbody tr:nth-of-type(1)"}]}