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 characters
let interval = setInterval(function () { | |
const spanDecline = Array.from(document.querySelectorAll("button.CFMInbox-MuiButtonBase-root.CFMInbox-MuiButton-root.CFMInbox-MuiButton-disableElevation > span.CFMInbox-MuiButton-label")).find(el => el.textContent === 'Decline'); | |
if(!spanDecline) { | |
clearInterval(interval); | |
return; | |
} | |
console.log(spanDecline); | |
spanDecline.parentNode.click(); | |
const listOfParticipants = Array.from(document.querySelectorAll('#b78978f311b3b616df6c96720e110c5a > div > div.css-1kq89qe > div.css-19du4nb button')); | |
if(listOfParticipants.length !== 0) { |
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 characters
""" | |
Author: Vitchyr Pong | |
Convert a PDF to svg files. Note that this is pretty slow since it makes | |
subprocess calls to inkscape's PDF-to-SVG command line convert. | |
Requirements: | |
- Inkscape (https://inkscape.org/) | |
- pyPdf (http://pybrary.net/pyPdf/) | |
- A '/tmp' directory. If not, you must pass in another directory. |