Browser automation agents for vertical AI companies
Simplex's agents handle branching logic and edge cases across long, 100+ question workflows.
A team from world-
class institutions
Built for complex form filling.
Battle-tested on legacy portals across verticals.
Healthcare Portals
Fill out 200+ question prior authorization or provider enrollment forms, matching different ICD codes, states, or insurances automatically.
ERPs
Scrape data tables across legacy ERP systems without API access.
Insurance Portals
Navigate carrier portals to retrieve quotes automatically.
Home Services Portals
Automate scheduling, dispatching, and customer management across home services platforms.
... and more
Features
Branching logicCode executionDeterministic scrapingCAPTCHA solvingStealth browsersStructured outputsVariable schemasWorkflow IDE
Branching logicCode executionDeterministic scrapingCAPTCHA solvingStealth browsersStructured outputsVariable schemasWorkflow IDE
Features that handle edge cases for robust workflows.
Code execution with branching logic
Deterministic code with conditional paths, loops, and error handling.
Variables
typerequiredpharmacystring
flow.py
type="pharmacy"
1v = load("variables.json")
2
3await click("#login")
4
5if v["type"] == "pharmacy":
6 await select("Specialty Pharmacy")
7
8if v["type"] == "prescriber":
9 await select("Medical Clinic")
10
11await click("Next")
running
Structured Outputs
Type-safe schemas for predictable data extraction.
schema.json
{
"auth_number": "string",
"status": enum
}
Extracted
auth_numberPA-2024-88471string
statusapprovedenum
Flexible variable definitions
Define inputs and test before deployment.
Test Data
patient_inforequired{...}object
procedure_coderequired99213string
submit_authoptionaldefault: Falseboolean