UBot Studio Beginner Tutorial Video Part 3

This tutorial is geared towards beginners. The goal is to show you the fastest way to learn the basics of UBot Studio with practical examples.

You can copy the code below:

ui open file("Keyword File",#input_keyword_file)
add list to list(%keywords,$list from file(#input_keyword_file),"Delete","Global")
set(#counter_index,0,"Global")
navigate("https://google.com","Wait")
wait for browser event("Everything Loaded","")
wait(1)
type text(<name="q">,$list item(%keywords,#counter_index),"Standard")
increment(#counter_index)
wait(1)
click(<value="Google Search">,"Left Click","No")

Was this helpful?