# TeeOne Manual Scraping Guide

## 🎯 Objective
Export participant list from competiciones.teeone.golf

## 📋 Manual Steps

### Step 1: Login
1. Open browser and go to: https://competiciones.teeone.golf/#/torneos/
2. Enter credentials:
   - Email: barry@scala4.com
   - Password: Chromcast123!
3. Click "ENTRAR" button

### Step 2: Navigate to Events
1. Look for "Calendario" view
2. Find "Mens Competition" events
3. Click on the first "Mens Competition" event

### Step 3: Access Registrations
1. Look for "Inscripciones" tab/button
2. Click on "Inscripciones"
3. Wait for participant list to load

### Step 4: Export Data
1. Look for "Opciones" button
2. Click on "Opciones"
3. Look for "Exportar a Excel" option
4. Click on "Exportar a Excel"
5. Save the downloaded file

## 🔧 Alternative Methods

### Method 1: Browser Developer Tools
1. Open browser developer tools (F12)
2. Go to Network tab
3. Perform the manual steps above
4. Look for API calls in the Network tab
5. Copy the API endpoints and try them programmatically

### Method 2: Copy HTML Source
1. Right-click on the participant table
2. Select "Inspect Element"
3. Copy the HTML structure
4. Use PHP to parse the HTML

### Method 3: Browser Automation
1. Use Selenium WebDriver
2. Use Puppeteer (if Node.js is updated)
3. Use Playwright

## 📊 Data Structure
Expected participant data:
- Number
- License
- Player Name
- Gender
- Level
- Handicap
- Tees
- Observations

## 🚀 Next Steps
1. Try the manual approach first
2. Use browser developer tools to find API endpoints
3. Implement automated solution based on findings