Skip to content

Instantly share code, notes, and snippets.

@egordm
Created January 12, 2021 10:05
Show Gist options
  • Save egordm/f892b9f29895e9bb47912d7c2e7a4a2e to your computer and use it in GitHub Desktop.
Save egordm/f892b9f29895e9bb47912d7c2e7a4a2e to your computer and use it in GitHub Desktop.
Google Collab Periodic Conneciton Check
# https://stackoverflow.com/a/59226569
interval = setInterval(function() {
console.log("working")
var selector = "#top-toolbar > colab-connect-button"
document.querySelector(selector).shadowRoot.querySelector("#connect").click()
setTimeout(function() {
document.querySelector(selector).shadowRoot.querySelector("#connect").click()
}, 1000)
}, 60*1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment