Course Content
Sample Python Programs
Sample Python Programs
0/1
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Python Database Programming
Python Database Programming
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

Selenium RC

Selenium RC ( RC stands for Remote Control): It was also known as Selenium 1.0. Selenium WebDriver is the successor to Selenium Remote Control. Selenium RC has been officially deprecated. The latest tool is Selenium WebDriver.

Selenium Remote Control

Selenium Remote Control (RC) is a test tool that allows you to write automated web application UI tests in any programming language against any website using any browser. Selenium RC comes in two parts: a combination of a Selenium server and a client, which allows the automation of any browser on any operating system.

  • RC Server: A server that automatically launches and kills browsers and acts as an HTTP proxy for web requests from them.
  • Client libraries for your favorite computer language.

 

Selenium Remote Control Architecture

Join the conversation