Skip to content

Instantly share code, notes, and snippets.

@loganwoolf
Created March 23, 2023 17:35
Show Gist options
  • Save loganwoolf/ab581ddc06198622b1bab9ab661a3274 to your computer and use it in GitHub Desktop.
Save loganwoolf/ab581ddc06198622b1bab9ab661a3274 to your computer and use it in GitHub Desktop.
Scrape tasks from teamwork and display in console
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