Automated Form Filling
Navigate to a website and fill out a form
Steps
| # | Activity | What it does |
|---|---|---|
| 1 | StartWebBrowser | Open form page |
| 2 | TextInput | Fill form fields |
| 3 | ClickElement | Submit form |
Workflow
StartWebBrowser("https://example.com/form", "useCurrentBrowserSession")
TextInput("//input[@name='name']", text="John Doe")
ClickElement("//button[@type='submit']")