Introducing InverseUI CLI: Run Automations Locally
December 25, 2024
InverseUI Team
2 min read
We're excited to announce the InverseUI CLI — a command-line tool that lets you run your recorded browser automations directly on your local machine. Install it via pip and start automating in minutes.
Quick Start
Getting started is simple. Install the CLI, login with your InverseUI account, and run any track:
pip install inverseui
inverseui login
inverseui fix <track_id>Key Features
- Local Execution: Run automations on your own machine with your existing Chrome profile and sessions.
- Auto-Recovery: The
fixcommand automatically recovers from errors by updating selectors and handling timing issues. - Session Persistence: Your Chrome profile is preserved at
~/.inverseui/chrome-data, keeping all your logins intact. - Headless Mode: Run automations in the background with
--headless.
Commands
inverseui login— Authenticate with your InverseUI accountinverseui run <track_id>— Execute a track exactly as recordedinverseui fix <track_id>— Run with automatic error recoveryinverseui logout— Sign out from your account
Check out the CLI documentation for the full reference.