End to End Testing

2 articles in End to End Testing · RSS
playwright automationend to end testing

Best Playwright Project Ideas for Automation Practice

Good Playwright project ideas include automating your workplace website, building a full test framework around a real application like OrangeHRM, or contributing to an existing open-source repository. Building a framework should ideally cover UI tests, API tests, CI/CD pipelines, and reporting. Users recommend structuring your code using the Page Object Model to keep tests and configurations organized. You should also use Playwright fixtures to handle setup and teardown. This approach keeps your tests isolated and independent from one another. Expanding beyond basic UI testing by adding API tests and accessibility checks will make your project more comprehensive. You can also study how established projects use the tool by looking at repositories like NASA's Open MCT, Cal.com, and various WordPress projects.

Aug 7, 2026 · 14:01:19 UTC2 min read
codexai code generation

How to Improve Code Quality When Using Codex AI

Codex is a strong tool for generating initial code quickly, but shipping quality software requires rigorous testing, review, and workflow discipline on top of what the model produces. Users report the best results come from focusing prompts on user experience, using planning mode for complex tasks, and verifying functionality with real end-to-end tests rather than trusting internal checks or clean diffs. Layering in adversarial reviews, multiple LLMs for cross-checking, and careful context management helps catch problems early and keeps Codex aligned with your project goals.

Aug 1, 2026 · 17:44:05 UTC2 min read