There are two types of actions Simplex exposes: agentic actions, which call our custom web agents, and non-agentic actions, which are traditional browser automation actions like going to a web page, typing in text, or emulating key presses.
from simplex import Simplexsimplex = Simplex(api_key="your_api_key")simplex.create_session(workflow_name="login_flow", proxies=False)simplex.goto("https://www.simplex.sh/login-example.html")simplex.click("Username field") # tab into the username fieldsimplex.type("marco@simplex.sh")simplex.click("Password field") # tab into the password fieldsimplex.type("SuperSecretPassword123!")simplex.click("Login button")simplex.wait(1000)session_data = simplex.capture_login_session()print(session_data)simplex.close_session()