Robot Framework

Installation Robot Framework Robocorp Code Robot Framework Language Server XPATH // Le noeud courant / Le noeaud fils .. Le noeud parent . Le noeud même, la valeur textuelle du noeud @ L’attribut [] Le prédicat: le noud dont RPA automatisation robotisée des processus (en anglais robotic process automation ou RPA) Keywords Wait Until Keyword Succeeds webdrivermanager firefox

 · 58 words

Hugo Installation

test 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 sudo apt-get update && sudo apt-get -y install golang-go ## Install ## Mac os brew install hugo ## Ubuntu sudo apt install hugo hugo version git config --global init.defaultBranch main hugo new site etertech-blog -f yml hugo new post/proxmox-ve-tutoriel.md #or use snap sudo snap install hugo snap info hugo sudo snap refresh hugo Update theme 1 2 3 4 5 6 7 8 # Step 1: Go to your local Hugo project's root directory cd /path/to/your-hugo-site # Step 2: Update the Anatole module (fetch the latest version) hugo mod get -u github.com/lxndrblz/anatole # Step 3: Clean up and reinstall module dependencies hugo mod tidy

 · 125 words

Enable color highlighting for ls command in mac OS X Terminal

Because macOS now uses Zsh instead of Bash, we have to modify the ~/.zshrc file. 1 2 3 echo 'export CLICOLOR=1' >> ~/.zshrc echo 'alias ls="ls -G"' >> ~/.zshrc echo 'alias ll="ls -lG"' >> ~/.zshrc We could test it with ls ll

 · 42 words