I'm based in Southeast Asia and targeting remote SDET roles at US/European companies. The job market feels opaque.…
109 discussions
I'm based in Southeast Asia and targeting remote SDET roles at US/European companies. The job market feels opaque.…
I need to test that a CSV export button downloads the correct file with the right data. Our app generates the file…
Our auth tokens expire after 1 hour. Most CI runs complete in 30–40 minutes so it's fine, but nightly full-suite runs…
Our product has a few LLM-powered features (a summarisation tool, a smart search). I'm trying to figure out how to test…
Playwright now supports component testing (React/Vue/Svelte) which blurs the line with E2E tests. In practice I'm…
I'm testing a FastAPI application with pytest-asyncio and httpx.AsyncClient and hitting a few rough edges. Issues I've…
I have a FastAPI service with a well-maintained OpenAPI spec (auto-generated by FastAPI). I want to generate a…
I'm building a Page Object Model layer with TypeScript strict mode enabled and running into issues typing things…
Our test suite: 1200 Playwright tests, currently runs serially in ~55 minutes. Target: under 10 minutes for the PR…
I see test.step() mentioned in Playwright docs but I'm not clear on when it's worth the extra nesting. From what I…
I've started using AI to generate first-pass test code. The problem: I've caught several subtle bugs in AI-generated…
Over the past few months I've been experimenting with Claude and GitHub Copilot for test case generation at work. Mixed…
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 integrate with: Stripe (payments), SendGrid (email), Twilio (SMS), and Segment (analytics). Each has a sandbox/test…
We need to parallelise a 600-test pytest suite. Current serial runtime is ~22 minutes, target is under 8 minutes. I've…
REST API testing feels natural with pytest + requests, but I'm not sure how to apply the same discipline to GraphQL.…
The ecosystem moves fast — new Playwright releases, pytest plugins, AI testing tools, framework comparisons. I feel…
We have a real-time dashboard that uses WebSockets and I'm struggling to write reliable tests for it. The main…
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…