Spaces:
Running
Running
File size: 331 Bytes
0738408 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Setup script for Hugging Face Spaces
# This installs Playwright browsers in headless mode
echo "🚀 Setting up Fagun Browser Automation Testing Agent..."
# Install Playwright browsers
echo "📥 Installing Playwright browsers..."
playwright install chromium
playwright install firefox
echo "✅ Setup complete!"
|