Working with Selenium Server
Get introduced to the Selenium server and learn about its components.
We'll cover the following...
Introduction
Selenium Server, formerly known as Selenium Remote Control (RC) Server, allows testers to write Selenium scripts on one machine and execute them on another. The word “remote” implies that the test scripts and the target browser may not have to be on the same machine. Selenium Server consists of two parts:
- Server
- Client
Selenium server
It is a Java server which launches drives and kills browsers on receiving commands with ...
...