Testing / Selenium Interview questions
What are the components of the Selenium suite?
The Selenium project bundles several distinct tools, each aimed at a different part of browser automation.
- Selenium WebDriver - the core API for programmatically controlling a real browser from test code.
- Selenium IDE - a browser extension for recording and replaying interactions without writing code.
- Selenium Grid - infrastructure for running tests across multiple machines, browsers, and versions in parallel.
Older versions also included Selenium RC (Remote Control), which predated WebDriver and worked by injecting JavaScript into the page - it has been officially deprecated for years and is no longer part of active Selenium development, replaced entirely by WebDriver's direct browser control.
More Related questions...