InterviewSolution
Saved Bookmarks
| 1. |
Is it necessary to use Selenium Server to run Selenium WebDriver scripts? |
|
Answer» SELENIUM Server is required when distributing Selenium WebDriver SCRIPTS for execution with Selenium Grid. Selenium Grid is a Selenium functionality that allows you to execute TEST cases on multiple machines on various platforms. You wish to execute your test cases on a remote machine because your local machine is running numerous applications. You will NEED to set up the remote server so that the test cases can run on it. |
|