@@ -105,17 +105,21 @@ uv run webqa-agent init -m gen
105105# Edit config.yaml: target.url, llm_config.api_key
106106# Configure test_config
107107# For more details, see "Usage > Generate Mode - Configuration" below
108- uv run webqa-agent gen # Run Generate Mode
109- uv run webqa-agent gen -c /path/to/config.yaml -w 4 # Generate Mode with specified config and 4 parallel workers
108+ # Run Generate Mode
109+ uv run webqa-agent gen
110+ # Generate Mode with specified config and 4 parallel workers
111+ uv run webqa-agent gen -c /path/to/config.yaml -w 4
110112
111113# 4) Run Mode
112114# Initialize Run mode configuration (config_run.yaml)
113115uv run webqa-agent init -m run
114116# Edit config.yaml: target.url, llm_config.api_key
115117# Write natural language test cases
116118# For more details, see "Usage > Run Mode - Configuration" below
117- uv run webqa-agent run # Run Run Mode
118- uv run webqa-agent run -c /path/to/config_run.yaml -w 4 # Run Mode with specified config and 4 parallel workers
119+ # Run Run Mode
120+ uv run webqa-agent run
121+ # Run Mode with specified config and 4 parallel workers
122+ uv run webqa-agent run -c /path/to/config_run.yaml -w 4
119123```
120124
121125### 🔧 Generate Mode - Optional Dependencies
@@ -166,7 +170,6 @@ For more details, please refer to [docs/MODES&CLI.md](docs/MODES&CLI.md)
166170target :
167171 url : https://example.com # Website URL to test
168172 description : Website QA testing
169- max_concurrent_tests : 2 # Optional, default 2
170173
171174test_config :
172175 function_test : # Functional testing
@@ -185,20 +188,13 @@ llm_config: # LLM configuration, supports OpenAI, An
185188 filter_model : gpt-4o-mini # Lightweight model for element filtering (optional)
186189 api_key : your_api_key # Or set via environment variable (OPENAI_API_KEY)
187190 base_url : https://api.openai.com/v1 # Optional, API endpoint. For OpenAI-compatible models (Doubao, Qwen, etc.), set to their API endpoint
188- temperature : 0.1 # Optional, model temperature
189- # For detailed configuration examples (OpenAI, Claude, Gemini) and reasoning settings,
190- # see config/config.yaml.example
191191
192192browser_config :
193- viewport : {"width": 1280, "height": 720}
194193 headless : False # Auto True in Docker
195194 language : en-US
196195
197196report :
198197 language : en-US # zh-CN or en-US
199-
200- log :
201- level : info # debug, info, warning, error
202198` ` `
203199
204200### Run Mode - Configuration
@@ -214,7 +210,6 @@ For more details and test case writing specifications, please refer to [docs/MOD
214210` ` ` yaml
215211target:
216212 url: https://example.com # Target website URL
217- max_concurrent_tests: 2 # Maximum concurrent test count
218213
219214llm_config: # LLM configuration
220215 api: openai
0 commit comments