Installation
Detailed installation and setup guide for Auto-Browse
Installation Guide
This guide will walk you through the complete installation and setup process for Auto-Browse.
Prerequisites
Before installing Auto-Browse, make sure you have:
- Node.js 16 or higher
- npm or yarn package manager
- A code editor (VSCode recommended)
Package Installation
Install Auto-Browse using npm:
Or using yarn:
⚠️ Important: Playwright Version Requirements
Auto Browse currently requires specific versions of Playwright. This requirement will be relaxed in future versions.
Required Versions
Version Conflicts
If you’re using Auto Browse alongside an existing Playwright setup, you must upgrade to these specific versions. Here’s how to handle common issues:
-
Installation Conflicts
This flag helps resolve peer dependency conflicts during installation.
-
Multiple Playwright Versions
- Remove existing Playwright installations
- Clear npm cache if needed:
npm cache clean --force
- Reinstall with the required versions
-
Project Compatibility
- Update your project’s Playwright configuration
- Ensure your existing tests are compatible with the alpha version
- Consider using a separate test environment if needed
🔄 Future releases will support a wider range of Playwright versions. Subscribe to our GitHub repository for updates.
Environment Configuration
Auto-Browse requires configuration through environment variables for the Language Model (LLM) settings.
Setting up Environment Variables
- Create a
.env
file in your project root:
Environment Variables Reference
Variable | Description | Default | Required |
---|---|---|---|
OPENAI_API_KEY | Your OpenAI API key | - | Yes |
LLM_MODEL | The LLM model to use | gpt-4o-mini | No |
TypeScript Configuration
If you’re using TypeScript (recommended), ensure your tsconfig.json
includes:
Playwright Integration
While Auto-Browse can be used standalone, it’s designed to work seamlessly with Playwright. If you plan to use it with Playwright tests:
- Install Playwright:
- Configure Playwright with Auto-Browse:
Verification
To verify your installation:
- Create a test file (e.g.,
test.ts
):
- Run the test:
Next Steps
- Learn about environment setup for different LLM providers
- Check out the quickstart guide for basic usage
- Explore supported actions to see what you can do