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; | |
} | |
}); |
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
# Machine with mailcatcher | |
docker run -d --name mailcatcher -p 1080:1080 -p 1025:1025 chatwork/mailcatcher | |
# Machine with mariadb | |
docker run --name mariadb_local -e MYSQL_ROOT_PASSWORD=secret -d -v mysql:/var/lib/mysql -p 33060:3306 mariadb:latest |
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
brew update && brew upgrade && brew cleanup && brew cu --all --cleanup --yes && sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder && sudo purge && sudo rm -rf ~/Library/Caches/* && sudo rm -rf ~/Library/Logs/* && clear |