Created
March 23, 2023 17:35
-
-
Save loganwoolf/ab581ddc06198622b1bab9ab661a3274 to your computer and use it in GitHub Desktop.
Scrape tasks from teamwork and display in console
This file contains 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
const tasks = document.querySelectorAll('.w-task-row__name'); | |
let outputString = '' | |
tasks.forEach( | |
(task) => outputString += ` | |
${task.innerText}` | |
); | |
console.log(outputString); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment