Created
September 18, 2023 02:12
-
-
Save JimLiu/f2917be33c3a978cbcacee6f70a45f7f to your computer and use it in GitHub Desktop.
Revisions
-
JimLiu created this gist
Sep 18, 2023 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ (function () { const observer = new MutationObserver(() => { // Find the button of 'Continue generating' [...document.querySelectorAll("button.btn")].forEach((btn) => { if (btn.innerText.includes("Continue generating")) { console.log("Found the button of 'Continue generating'"); setTimeout(() => { console.log("Clicked it to continue generating after 1 second"); btn.click(); }, 1000); } }); }); // Start observing the dom change of the form observer.observe(document.forms[0], { attributes: false, childList: true, subtree: true, }); })()