+1 vote
in Selenium by
Is it necessary to use Selenium Server to run Selenium WebDriver scripts?

1 Answer

0 votes
by

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.

...