InterviewSolution
Saved Bookmarks
| 1. |
What are the different components in Selenium? |
|
Answer» The Selenium suite includes 4 set of tools:
1. Selenium Integrated Development Environment (IDE): It is a RECORD and playback tool, which is distributed as a Firefox Plugin. 2. Selenium Remote Control (RC): It is a server that allows users to create test scripts in the programming language of their choice. It also allows developers to execute test scripts cross browsers. 3. Selenium WebDriver: This tool communicates directly with the browser and uses native COMPATIBILITY to automate. 4. Selenium Grid: It is used to distribute test EXECUTION on multiple platforms and environments |
|