Multiple choice technology testing

Which of the following is not a feature of Selenium?

  1. Intelligent field selection will use IDs, names, or XPath as needed

  2. Can't debug and set breakpoints

  3. Save tests as HTML, Ruby scripts, or other formats

  4. Option to automatically assert the title of every page

Reveal answer Fill a bubble to check yourself
B Correct answer
AI explanation

Selenium is a browser automation tool with no built-in IDE-style debugger, so it lacks the ability to set breakpoints and step through test execution the way a full development environment does — this is a genuine limitation. In contrast, Selenium does support intelligent locator strategies (ID, name, XPath), can export scripts to multiple languages, and can auto-assert page titles, so those are real features, not limitations.