Views
No views yet
navigate command)click, type, select, hoverread, dump, write, tablefor, if/else, whileexist(), present(), count()1# Download the GGUF file
2wget https://huggingface.co/raoulbia/tagui-qwen-gguf/resolve/main/tagui-qwen-bf16.gguf
3
4# Download the Modelfile
5wget https://huggingface.co/raoulbia/tagui-qwen-gguf/resolve/main/Modelfile
6
7# Create the Ollama model
8ollama create tagui-qwen -f Modelfile
9
10# Run the model
11ollama run tagui-qwen "Write a TagUI script to search Google for 'weather today'"1https://example.com/login
2wait 2
3
4type username_field as myuser
5type password_field as mypassword
6click login_button
7
8wait 3
9
10if exist('dashboard')
11 click reports_link
12 wait 2
13 click download_button
14 wait 5
15 echo Report downloaded successfully
16else
17 echo Login failednavigate command - URLs are written directly on their own linetry/catch - Use if exist() or if present() for error handling1num_items = count('selector')
2for i from 1 to num_items
3 // process item