Automated web testing framework using Playwright, Python and pytest
- `pages/` - Page Object classes
- `tests/` - Test cases
- `conftest.py` - Pytest configuration
- `.gitignore` - Git exclusion rules
- 
Clone repository: ```bash git clone https://github.com/densaburoff/PythonProjectsTests.git cd PythonProjectsTests ``` 
- 
Install dependencies: ```bash pip install playwright pytest playwright install ``` 
```bash "# Run all tests" pytest
"# Run specific test file" pytest tests/my_first_test.py
"# Run with detailed output" pytest -v ```