We're an SDET team testing a service that uses a database we don't own — the schema is managed by a platform team and…
63 discussions
We're an SDET team testing a service that uses a database we don't own — the schema is managed by a platform team and…
As our API test suite grows I'm realising ad-hoc test data in each test function is a maintenance nightmare. Three…
I need to validate API response structures in pytest tests. Three paths I see: 1. jsonschema — explicit, dict-based…
We have engineers in India, UK, and US. Our tests occasionally fail due to timezone-dependent logic: - Date range…
We need to parallelise a 600-test pytest suite. Current serial runtime is ~22 minutes, target is under 8 minutes. I've…
We want to add test result notifications to our Slack channel after each CI run. Before I build this out I want to know…
Most people run headed during development and headless in CI. But I'm curious about the exceptions: - When do you run…
Playwright now supports component testing (React/Vue/Svelte) which blurs the line with E2E tests. In practice I'm…
I had an idea: take our flaky test history (test name, failure messages, stack traces, timestamps) and feed it to an…
Our test suite hits a third-party API (Stripe sandbox) and we occasionally get 429s in CI, causing random test…
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 use pytest marks for test organisation: @pytest.mark.slow, @pytest.mark.integration, @pytest.mark.smoke. In theory:…
Our auth tokens expire after 1 hour. Most CI runs complete in 30–40 minutes so it's fine, but nightly full-suite runs…
I need to parametrize a test with inputs that are dictionaries containing lists, some optional keys, and some keys that…
I need to test that a CSV export button downloads the correct file with the right data. Our app generates the file…
We had a bug where a function-scoped test was accidentally using a session-scoped fixture that mutated shared state.…
File uploads work fine locally (macOS) but fail intermittently in our Linux CI containers. We're using…
I'm building a Page Object Model layer with TypeScript strict mode enabled and running into issues typing things…
We have a real-time dashboard that uses WebSockets and I'm struggling to write reliable tests for it. The main…
I'm writing a test for an admin action that should be visible to admins but hidden from regular users. The test needs…