Skip to content

Instantly share code, notes, and snippets.

@jamesob
Created September 30, 2023 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesob/63b1b92ad3d1c6bbddf2677073a087fb to your computer and use it in GitHub Desktop.
Save jamesob/63b1b92ad3d1c6bbddf2677073a087fb to your computer and use it in GitHub Desktop.
Load all comments in a Github PR
// 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