Skip to content

Instantly share code, notes, and snippets.

@webknjaz
Created June 27, 2022 14:51
Show Gist options
  • Save webknjaz/bdfa129a51dff9adcec9ee7b394b11f7 to your computer and use it in GitHub Desktop.
Save webknjaz/bdfa129a51dff9adcec9ee7b394b11f7 to your computer and use it in GitHub Desktop.
This is a DevTools Console snippet for hiding the `Batched CI for` lines from the output
for (const line of $x('/html/body/div[1]/div/div/div[2]/div[2]/div[2]/div/div[5]/div/div/div/div/table/tbody/a')) {
if (!line.querySelector('.fontSizeMS>.text-ellipsis').textContent.includes("Batched CI for "))
{
continue;
}
line.style.display = 'none'; // don't .remove() because it breaks the page
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment