File uploads work fine locally (macOS) but fail intermittently in our Linux CI containers. We're using…
24 discussions
File uploads work fine locally (macOS) but fail intermittently in our Linux CI containers. We're using…
I need to test that a CSV export button downloads the correct file with the right data. Our app generates the file…
Our test suite: 1200 Playwright tests, currently runs serially in ~55 minutes. Target: under 10 minutes for the PR…
Our flake rate is ~4% per test in CI (down from 9% after a big cleanup push). With 800 tests that means ~32 flaky…
We need to parallelise a 600-test pytest suite. Current serial runtime is ~22 minutes, target is under 8 minutes. I've…
Our test suite hits a third-party API (Stripe sandbox) and we occasionally get 429s in CI, causing random test…
This is the most frustrating debugging scenario I encounter regularly. Test passes 100% locally, fails 30–80% in CI. My…
Before trace viewer, debugging a CI failure meant adding console.log, pushing, waiting 8 minutes for CI, repeat.…
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 want to add test result notifications to our Slack channel after each CI run. Before I build this out I want to know…
My company is adding basic security testing requirements. Leadership wants SDETs to own it since we already own…
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…
We have two camps on our team: Camp A (shared environment): Tests run against a shared staging server. Fast to set up,…
We have a handful of E2E tests that take 4–6 minutes each. They cover complex user journeys (onboarding flow,…
Most load test examples I see just report numbers (p95, p99, RPS) without failing the test definitively. I want our…
We're moving off Jenkins and evaluating GitHub Actions vs GitLab CI (we're already on GitLab for source control). For…
We're running Selenium Grid 3 on 6 VMs and it's a maintenance headache — node crashes, session leaks, version…
We have two teams: one owns a user service (Python/FastAPI), one owns a frontend (Next.js). The user service API is the…
Starting a new performance testing initiative. Our stack: Node.js microservices, REST APIs, ~50k requests/day in…