Created
September 30, 2023 10:20
-
-
Save jamesob/63b1b92ad3d1c6bbddf2677073a087fb to your computer and use it in GitHub Desktop.
Load all comments in a Github PR
This file contains 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
// Open Inspect -> Console, copy-paste this in. | |
function load_all_gh_comments() { | |
let buttons = Array.from(document.querySelectorAll('button')); | |
let get_with_text = (text) => buttons.filter((b) => b.textContent.includes(text)); | |
let load_more_buttons = get_with_text("Load more"); | |
let nothing_loading = get_with_text("Loading…").length === 0; | |
if (load_more_buttons.length === 0 && nothing_loading) { | |
console.log("done loading comments"); | |
return; | |
} | |
load_more_buttons.forEach((button) => { button.click(); }); | |
console.log(`clicked ${load_more_buttons.length} buttons, still loading...`); | |
setTimeout(load_all_gh_comments, 500); | |
} | |
load_all_gh_comments(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment