General
What is Optexity?
What is Optexity?
Parameters & Credentials
Do I need to build new automation for each user or login credentials?
Do I need to build new automation for each user or login credentials?
How do I access parameter values?
How do I access parameter values?
{parameter_name[index]} syntax. For single values use {username[0]}. In loops, use {variable[index]} for the current iteration. See Parameters for details.How do I handle passwords and secrets securely?
How do I handle passwords and secrets securely?
secure_parameters instead of hardcoding credentials. Optexity retrieves values at runtime from secure storage like 1Password or generates TOTP codes. Your secrets are never exposed in the workflow.| Provider | Use Case | Documentation |
|---|---|---|
| 1Password | Passwords, API keys | 1Password Integration |
| TOTP | 2FA codes | TOTP Integration |
Control Flow
How do I iterate over multiple items on a page?
How do I iterate over multiple items on a page?
for_loop_node to iterate over values from input parameters or extracted data. See For Loop Node.How do I handle conditional logic?
How do I handle conditional logic?
if_else_node to execute different actions based on conditions. See If Else Node.Two-Factor Authentication
Can Optexity handle 2FA/MFA?
Can Optexity handle 2FA/MFA?
Do you handle OTP over email?
Do you handle OTP over email?
Data & Downloads
How do I access downloaded files?
How do I access downloaded files?
GET /api/v1/get_downloads endpoint. Downloaded files are stored in cloud storage with signed URLs. See Downloads & Files.Where is my extracted data stored?
Where is my extracted data stored?
GET /api/v1/get_output_data or receive it in callbacks.Do I have to poll to get results?
Do I have to poll to get results?
Form Interactions
How do I fill a field and select from a dropdown that appears?
How do I fill a field and select from a dropdown that appears?
input_text to type, then click_element to select. Add before_sleep_time to wait for the dropdown.How do I select from a native dropdown?
How do I select from a native dropdown?
select_option for native <select> elements:input_text + click_element for custom dropdowns that populate after typing.How do I skip an action when the element might not exist?
How do I skip an action when the element might not exist?
command field to use AI-based element finding, or set skip_prompt: true with assert_locator_presence: true to skip gracefully.Pricing & Access
Do you have a free tier?
Do you have a free tier?
Do you provide cloud browsers?
Do you provide cloud browsers?
Troubleshooting
Does Optexity handle CAPTCHAs?
Does Optexity handle CAPTCHAs?
Automation is not working reliably
Automation is not working reliably
browser_channel to "chrome" instead of "chromium" in your workflow. Some websites work better with Chrome.