REST API testing feels natural with pytest + requests, but I'm not sure how to apply the same discipline to GraphQL.…
63 discussions
REST API testing feels natural with pytest + requests, but I'm not sure how to apply the same discipline to GraphQL.…
We have a real-time dashboard that uses WebSockets and I'm struggling to write reliable tests for it. The main…
The ecosystem moves fast — new Playwright releases, pytest plugins, AI testing tools, framework comparisons. I feel…
Our test suite hits a third-party API (Stripe sandbox) and we occasionally get 429s in CI, causing random test…
Our API test suite uses a real PostgreSQL database (Docker, spun up in CI). Each test creates data and we need…
This is the most frustrating debugging scenario I encounter regularly. Test passes 100% locally, fails 30–80% in CI. My…
StaleElementReferenceException is the bane of our Selenium suite. We get maybe 20–30 per CI run across 800 tests,…
We have several user flows triggered by emails: registration confirmation, password reset, order confirmation. I need…
We want to add k6 performance tests to our CI pipeline but our PR pipeline is already 12 minutes and I don't want to…
We had a bug where a function-scoped test was accidentally using a session-scoped fixture that mutated shared state.…
We want to add test result notifications to our Slack channel after each CI run. Before I build this out I want to know…
I had an idea: take our flaky test history (test name, failure messages, stack traces, timestamps) and feed it to an…
Test code reviews on my team are inconsistent. Some reviewers are rigorous (comment on everything), some rubber-stamp…
I need to validate API response structures in pytest tests. Three paths I see: 1. jsonschema — explicit, dict-based…
I see job descriptions asking for Python OR Java OR JavaScript AND sometimes all three. I'm trying to figure out what I…
My company is adding basic security testing requirements. Leadership wants SDETs to own it since we already own…
I'm transitioning into an SDET role and trying to decide whether to build depth in Python or Java for Selenium.…
I'm working on a fairly large test project (~500 tests across 3 microservices) and our conftest.py files are getting…
Flaky tests are killing our team's confidence in the test suite. We're seeing around 8–12% flake rate on our Playwright…
We have test credentials (API keys for sandbox environments, DB passwords, OAuth tokens) that need to be available in…