Selenium Concepts

From NovaOrdis Knowledge Base
Revision as of 21:29, 1 August 2019 by Ovidiu (talk | contribs) (→‎Server)
Jump to navigation Jump to search

External

Internal

Selenium Architecture

Selenium has a client-server architecture, and includes both client and server components.

Client

The Selenium client exposes the WebDriver API, which can be used to interact with the page. The client extends RemoteWebDriver, which communicates with the remote Selenium server. There are browser-specific constructors for the WebDriver (ChromeDriver, FirefoxDriver).

Server

The Selenium server receives request from the Selenium client's RemoteWebDriver.

It also includes WebDriver API to run tests against web browsers on the server machine.

Navigation to a Web Page

WebDriver driver = new ChromeDriver();
driver.get("http://example.com");