Created
May 6, 2021 17:58
-
-
Save pbinkley/dcb959b3893f3847d8a7278a2b2646f5 to your computer and use it in GitHub Desktop.
Youtube comments demo sitemap for webscraper.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_id": "youtube-comments", | |
| "startUrl": [ | |
| "https://www.youtube.com/watch?v=DLctAw4JZXE" | |
| ], | |
| "selectors": [ | |
| { | |
| "id": "comment", | |
| "type": "SelectorElement", | |
| "parentSelectors": [ | |
| "_root" | |
| ], | |
| "selector": "ytd-comment-thread-renderer div#main", | |
| "multiple": true, | |
| "delay": 0 | |
| }, | |
| { | |
| "id": "commenter", | |
| "type": "SelectorText", | |
| "parentSelectors": [ | |
| "comment" | |
| ], | |
| "selector": "span.ytd-comment-renderer", | |
| "multiple": false, | |
| "regex": "", | |
| "delay": 0 | |
| }, | |
| { | |
| "id": "text", | |
| "type": "SelectorText", | |
| "parentSelectors": [ | |
| "comment" | |
| ], | |
| "selector": "yt-formatted-string#content-text", | |
| "multiple": false, | |
| "regex": "", | |
| "delay": 0 | |
| }, | |
| { | |
| "id": "readmore", | |
| "type": "SelectorElementClick", | |
| "parentSelectors": [ | |
| "comment" | |
| ], | |
| "selector": "ytd-comment-thread-renderer span.more-button", | |
| "multiple": false, | |
| "delay": 2000, | |
| "clickElementSelector": "ytd-comment-thread-renderer span.more-button", | |
| "clickType": "clickOnce", | |
| "discardInitialElements": "do-not-discard", | |
| "clickElementUniquenessType": "uniqueText" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment