I'm testing a FastAPI application with pytest-asyncio and httpx.AsyncClient and hitting a few rough edges. Issues I've…
63 discussions
I'm testing a FastAPI application with pytest-asyncio and httpx.AsyncClient and hitting a few rough edges. Issues I've…
Test code reviews on my team are inconsistent. Some reviewers are rigorous (comment on everything), some rubber-stamp…
Most AI test generation demos show the happy path: given a function, generate a test skeleton. I've seen this work OK.…
We integrate with: Stripe (payments), SendGrid (email), Twilio (SMS), and Segment (analytics). Each has a sandbox/test…
Our payments API calls Stripe, our notifications API calls SendGrid, and our geolocation API calls Google Maps. All…
Our Playwright suite has 200+ tests and login takes 3–4 seconds each time. Running everything serially we're losing ~15…
We have two teams: one owns a user service (Python/FastAPI), one owns a frontend (Next.js). The user service API is the…
We want to add accessibility testing to our suite. We have a React app with ~60 pages. Current thinking: - axe-core +…
The ecosystem moves fast — new Playwright releases, pytest plugins, AI testing tools, framework comparisons. I feel…
We have two camps on our team: Camp A (shared environment): Tests run against a shared staging server. Fast to set up,…
StaleElementReferenceException is the bane of our Selenium suite. We get maybe 20–30 per CI run across 800 tests,…
Most load test examples I see just report numbers (p95, p99, RPS) without failing the test definitively. I want our…
We have a 1,200-test suite built over 4 years. Good test coverage, but: - No documentation of test strategy or…
Mutation testing (mutmut for Python, Stryker for JS) sounds powerful in theory: introduce small code changes and verify…
We have test credentials (API keys for sandbox environments, DB passwords, OAuth tokens) that need to be available in…
Our API test suite uses a real PostgreSQL database (Docker, spun up in CI). Each test creates data and we need…
I've started using AI to generate first-pass test code. The problem: I've caught several subtle bugs in AI-generated…
REST API testing feels natural with pytest + requests, but I'm not sure how to apply the same discipline to GraphQL.…
We have a handful of E2E tests that take 4–6 minutes each. They cover complex user journeys (onboarding flow,…
We're running Selenium Grid 3 on 6 VMs and it's a maintenance headache — node crashes, session leaks, version…