This is the suite's regression gate. Answer every question, then run the suite. Wrong answers show an explanation — read it, then re-run. In this course, like on a real team, you don't merge on a red build.
01.Forgetting driver.quit() causes…
Every ChromeDriver() starts a real process. Suite 05's @AfterEach guarantees cleanup even when tests fail.
02.NoSuchElementException appears. Your first debugging move?
It's an Error (suspect the test). The exception prints the locator it tried — verify it against the live page before touching Java.
03.What's wrong with Thread.sleep(5000) as a waiting strategy?
Fixed waits treat the symptom: 200 tests × 5s = 16 wasted minutes per run, and a slow day still breaks it.