SDET Interview Preparation

SDET (Software Development Engineer in Test) interviews test both your engineering skills and your testing judgment. Expect questions about test strategy, framework design and CI, and a live coding part. Practice both here.

practice-questions

question 01 / 060/0 correct so far

Your team has 900 UI end-to-end tests and 100 unit tests. The suite takes 3 hours and fails randomly. What is the main structural problem?

coding-challenges

1

Design a login test suite

Write three Playwright tests for a login page: successful login, wrong password shows an error, and empty form shows validation messages. Use test.describe and a beforeEach for navigation.

Solve it in the editor →
2

Stabilize a flaky flow

In the CRM app, saving a new contact takes about 700ms. Write a test that creates a contact and asserts the new row appears, without any fixed waits.

Solve it in the editor →

other-tracks