clio728

test-automation

[Python] Allure Report Setup Guide | Visualize pytest × Playwright Results Beautifully

When automating tests with pytest, you'll often want to share results as something more readable than a plain HTML table...
test-automation

Boundary Value Analysis & Equivalence Partitioning

Boundary value analysis and equivalence partitioning are the first test design techniques every QA engineer should maste...
test-automation

Playwright + pytest Test Structure Best Practices | Folder Design, Fixtures & Marks Explained

Going beyond simply connecting Playwright and pytest — designing your folder structure, fixture hierarchy, and mark stra...
test-automation

Python pytest Complete Guide | fixtures, parametrize & conftest.py Explained

pytest is the most widely used testing framework in Python — its simple syntax and powerful fixture system dramatically ...
test-automation

What Is Decision Table Testing? How to Build One with Real Examples | Condition Combination Testing + pytest

Decision table testing is a test design technique that organizes multiple conditions and their combinations into a table...
test-automation

7 Essential Test Design Techniques for QA Engineers | Equivalence Partitioning, Boundary Value Analysis, State Transition Testing & More

Test design techniques are systematic approaches to designing test cases efficiently. Since testing every possible input...
test-automation

GitHub Actions × Playwright: Automate E2E Tests in CI/CD | Complete Setup Guide from Scratch

By combining GitHub Actions with Playwright, you can build a CI/CD pipeline that automatically runs E2E tests on every p...
test-automation

Python API Testing Complete Guide | pytest × requests from CRUD Tests to HTML Reports and CSV Output

For engineers who want to start API testing with Python. From CRUD API testing with pytest and requests to HTML reports ...
test-automation

How to Output Python API Test Results to CSV & HTML Report | pytest × requests

Automating API tests with Python is only half the job — if you can't share the results, it's not enough for real-world u...
test-automation

How to Write API DELETE Tests in Python | Verify Deletion with pytest × requests

📌 Who This Article Is ForThose who want to write DELETE request tests with Python and requestsQA engineers who want to l...