Quick Start
Let's create a simple project to automate Google search.
Creating Your First Project
- Open ProjectMaker - the main project editor
- Add "Navigate" action - to open Google
- Set URL:
https://google.com
- Add "Type Text" action in the search box
- Add "Click" action on the search button
Example Action Code
<template>
<action name="Navigate" url="https://google.com" />
<action name="Type" element="input[name='q']" text="ZennoPoster" />
<action name="Click" element="input[value='Google Search']" />
</template>
Running the Project
- Press F5 for test run
- Make sure all actions execute correctly
- Save project (Ctrl+S)
🎉 Congratulations! You've created your first ZennoPoster project.