Skip to content

Instantly share code, notes, and snippets.

@taziden
taziden / Komoot bulk remove Tours
Created May 20, 2023 18:24 — forked from RingoRohe/Komoot bulk remove Tours
Want to remove all your Tours from Komoot.de? Go to the Page with your Tourlist, open Developer Console, paste this Code and wait.
let func = () => {
let tour = document.querySelector('li[data-tour-id] [data-test-id="t_actions_delete"]');
if (tour) {
tour.click();
window.setTimeout(() => {
document.querySelector('button[data-test-id=t_actions_delete_confirm]').click();
window.setTimeout(() => {
func();
}, 300);
}, 300);