-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 703 Bytes
/
.env.example
File metadata and controls
38 lines (30 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Environment configuration for Python Playwright MCP Testing Framework
# Browser Configuration
HEADLESS=true
SLOW_MO=0
TIMEOUT=30000
BROWSER_TIMEOUT=30000
# Test Configuration
BASE_URL=http://localhost:3000
API_BASE_URL=https://jsonplaceholder.typicode.com
API_TIMEOUT=30000
# Test Environment
TEST_ENV=development
DEBUG=false
LOG_LEVEL=INFO
# Parallel Testing
PYTEST_WORKERS=4
# Recording and Reporting
RECORD_HAR=false
SCREENSHOT_ON_FAILURE=true
VIDEO_ON_FAILURE=true
TRACE_ON_FAILURE=true
# CI Configuration
CI=false
# Authentication (when needed)
API_KEY=your-api-key-here
AUTH_TOKEN=your-auth-token-here
# Performance Testing
MAX_RESPONSE_TIME=5.0
CONCURRENT_USERS=10
LOAD_TEST_DURATION=60