Created
May 1, 2024 18:55
-
-
Save rogersilvasouza/15a724086c2aac8d2cf49b020f5c520e to your computer and use it in GitHub Desktop.
Apagar os itens na lixeira do Canva
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
let btnMoreActions = document.querySelector('button[aria-label="Mais ações"]'); | |
btnMoreActions.click(); | |
setTimeout(function() { | |
let spans = document.querySelectorAll('span'); | |
spans.forEach(function (span) { | |
if (span.textContent === "Excluir da lixeira") { | |
span.click(); | |
return; | |
} | |
}); | |
setTimeout(function() { | |
var btnConfirm = document.querySelector('button span._38oWvQ'); | |
btnConfirm.click(); | |
}, 500); | |
}, 500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Só entrar na lixeira do Canva e mudar a listagem para "Lista" abrir o terminal e rodar no console.
Ele vai apagar um registro por vez, se tiver certeza que quer apagar tudo só ir apertando pra cima e enter que ele vai rodar mais vezes.