Skip to content

Instantly share code, notes, and snippets.

@karpatic
Last active September 3, 2024 16:21
Show Gist options
  • Save karpatic/89533c7742f7e4f7fc195f0f7d2152ef to your computer and use it in GitHub Desktop.
Save karpatic/89533c7742f7e4f7fc195f0f7d2152ef to your computer and use it in GitHub Desktop.
setInterval(() => {
document.querySelectorAll('*').forEach(element => {
if (element.textContent.trim() === 'Continue generating') {
element.click();
}
});
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment