Our Playwright suite has 200+ tests and login takes 3–4 seconds each time. Running everything serially we're losing ~15…
60 discussions
Our Playwright suite has 200+ tests and login takes 3–4 seconds each time. Running everything serially we're losing ~15…
I have a senior SDET interview at a product company (Series C, ~200 engineers) in 3 weeks. I've done 2 SDET interviews…
I'm writing a test for an admin action that should be visible to admins but hidden from regular users. The test needs…
We have a 1,200-test suite built over 4 years. Good test coverage, but: - No documentation of test strategy or…
Most AI test generation demos show the happy path: given a function, generate a test skeleton. I've seen this work OK.…
Playwright now supports component testing (React/Vue/Svelte) which blurs the line with E2E tests. In practice I'm…
Our product has a few LLM-powered features (a summarisation tool, a smart search). I'm trying to figure out how to test…
I'm building a Page Object Model layer with TypeScript strict mode enabled and running into issues typing things…
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…
We need to parallelise a 600-test pytest suite. Current serial runtime is ~22 minutes, target is under 8 minutes. I've…
We integrate with: Stripe (payments), SendGrid (email), Twilio (SMS), and Segment (analytics). Each has a sandbox/test…
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…
This is the most frustrating debugging scenario I encounter regularly. Test passes 100% locally, fails 30–80% in CI. My…
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…
Test code reviews on my team are inconsistent. Some reviewers are rigorous (comment on everything), some rubber-stamp…