DEV Community

Pawan Garia
Pawan Garia

Posted on • Originally published at pawangaria.com

Understanding the Architecture of Selenium WebDriver

Selenium WebDriver provides a programming interface for driving the browser for automation testing. You can find the introduction of WebDriver in my other article. This article is more about architecture and understanding how selenium WebDriver uses JSON Wire Protocol.

JSON Wire Protocol is an abstract specification of how automation behavior like clicking or typing or whatever you actually want to do with your automation script is mapped to selenium or appium or HTTP requests and response.

Why JSON Wire Protocol used in the first place?

To implement a client-server architecture that can give us the following benefits.

  • You write tests in any programming language.
  • You can perform or run test on cloud services like SauceLabs, BrowserStack or Selenium Grid setup.
  • You are not bound to run tests only on the local machine.
  • Different Drivers(FirefoxDriver, ChromeDriver) can be created for browsers and separate implementation by using the same standards.

So client-server implementation requires a standard set of the specification beforehand so that Server and Client should be in sync with each other in terms of what is coming and going on request and response. It's something like a language of communication with each other. So we need some common specifications to solve this kind of requirement and the solution is HTTP.

Why HTTP is the solution?

HTTP is a standard for the web and can be a good base for the specification. Every programming language has a good HTTP library that can be used for creating client and server for request and response calls.

How JSON Wire protocol works with HTTP?

HTTP request and response are generally made of verbs, route, body and response code which I am explaining here in details:

HTTP Verbs:

GET: Retrieve some information from server for example: getText, getTitle

POST: Make something happen for example: startSession, findElement, Click

DELETE: Delete some resource for example: deleteSession

HTTP Route:

There are many routes in JSON Wire Protocol used by WebDriver which you can check out here. Few examples:

GET   /status

POST  /session

GET   /Session

client server request response in webdriver
HTTP Response Code:

HTTP status codes are not specific enough for all the kind of things that might happen in Selenium WebDriver testing session. So for a specific case like NoSuchElement or Errors, we have a status code so that client can give particular and useful information back to the user. There are many response codes defined in WebDriver which you can find here in details but here are some examples:

0:   Success
7:   NoSuchElement
11:  ElementNotVisible
200: Everything OK
500: Something is wrong
404: Resource not there
501: Valid request but action not done by the server

HTTP Request and Response Body:

Everything is JSON in the request and response body. JSON is used for data transfer between client and server.

JSON Wire Protocol Request has route and body described in JSON like:

POST /session
{"desiredCapabilities" : {"browserName" : "chrome"}}

JSON Wire Protocol Response has status code and value in the body like a successful findElement request will give you the following response:

{"status" : 0, "value" : {"element" : "123422"}}

How Test work with HTTP and JSON Wire Protocol?

HTTP is a stateless protocol which means multiple requests are not associated with each other and server is not required to track the state of a particular client's previous request. Your test might be getting an Element in one request and clicking on the same Element in some another request, So Client and Server should share session, element, frame, etc. with each other in subsequent requests.
So the server assigns a unique ID to these Items like session and Element and then shares them with Client. The client can decide in the request like what needs to be done on the particular ID like click on an element.

Client makes a findElement call to the server and gets the response:

  Request:  POST  /session/::sessionId/element
  Response: {“status”:0, “value”:{“element":”elementID”}}

Now the client knows the elementID from the previous request's response and sends a click request with elementID.

   Request:  POST  /session/::sessionId/element/::elementID/click
   Response: {“status” : 0}

What WebDriver is doing in JSON Wire protocol?

Selenium WebDriver is a client which is giving an interface to write tests in programming languages like Java or Python or many other languages in the market. The server doesn't care or know about what language you are using for writing your tests because it only cares about the correct protocol which is JSON Wire protocol. So you can also make your own Selenium Webdriver in your choice of programming language. :)

Thanks for reading!

Oldest comments (0)