Last active
March 31, 2021 22:01
-
-
Save alan-andrade/31e4d2cacb5436e33a97e1d3e424c8c7 to your computer and use it in GitHub Desktop.
Revisions
-
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 33 additions and 10 deletions.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 @@ -1,11 +1,34 @@ javascript:(() => { const contains = (text) => `contains(text(),'${text}')`; const conditions = (textOrArray) => textOrArray instanceof Array ? textOrArray.map(contains) : [contains(textOrArray)]; const btnXpath = (text) => `//button[${conditions(text).join(" or ")}]`; const divXpath = (text) => `//div[${contains(text)}]`; const findEl = (xpath) => document.evaluate( xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; const isWriting = () => findEl(`//div[@role="listbox"]`); const back = () => findEl(btnXpath("Back")).click(); const flag = () => findEl(btnXpath(["Flag Class", "Unflag Class"])).click(); const skip = () => findEl(btnXpath("Skip")).click(); const next = () => findEl(btnXpath("Save + Next")).click(); const tag = () => findEl(divXpath("Choose an option")).click(); const keyMappings = { "a": back, "s": flag, "d": skip, "f": next, "w": tag }; const triggerFn = (key) => keyMappings[key](); const guard = () => isWriting() ? () => {} : triggerFn; document.onkeypress = (e) => guard()(e.key); alert("a = Back\ns = Flag/Unflag\nd = Skip\nf = Next\nw = Write"); })() -
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 7 additions and 5 deletions.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 @@ -1,9 +1,11 @@ javascript:(function() { document.onkeypress = (e) => { if (e.key === "n" || e.key === "f") { const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); } }; alert("Hotkeys enabled. Press F or N to move forward."); })() -
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 2 additions and 2 deletions.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 @@ -4,6 +4,6 @@ document.onkeypress = (e) => { const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); }; alert("Hotkeys enabled. Press F or N to move forward."); })() -
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 2 additions and 1 deletion.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 @@ -1,8 +1,9 @@ javascript:(function() { document.onkeypress = (e) => { if (e.key !== "n" || e.key !== "f") { return } const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); } alert("Hotkeys enabled. Press F or N to move forward.") })() -
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 8 additions and 3 deletions.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 @@ -1,3 +1,8 @@ javascript:(function() { document.onkeypress = (e) => { if (e.key !== "n") { return } const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); } })() -
alan-andrade revised this gist
Mar 31, 2021 . 1 changed file with 2 additions and 2 deletions.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 @@ -1,3 +1,3 @@ javascript:(function(window) { window.document.onkeypress = (e) => { if (e.key !== "n") { return } const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); } })(window) -
alan-andrade created this gist
Mar 31, 2021 .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,3 @@ function(window) { window.document.onkeypress = (e) => { if (e.key !== "n") { return } const xpath = "//button[contains(text(),'Save + Next Class')]"; const element = document.evaluate(xpath, window.document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; element.click(); } }(window)