Selenium WebDriver and Many more.

Kishor Munot
4 min readSep 26, 2023
Selenium Webdriver Manager

Hello Readers,

Selenium and recently entered new test frameworks, such as Cypress, Playwright and many more automation tools are growing in the software testing industry. Everyone is trying hard to survive in the industry because every tool gives different advantages to the user and minimize the efforts of the user.
Today we are going to discuss a new development in Selenium that happened last month. We know that Selenium WebDriver is still the most popular and widely used UI testing framework in the industry. Some time ago, Selenium was released with its 4th version. It was equipped with many new features including improved appearance and thus regained the leadership position in the world of testing.

Earlier versions of Selenium used JSON wire protocol to communicate with the various browsers. In Selenium 4, the whole JSON wire protocol is replaced by the W3C web-driver protocol and how they interact with the help of updated protocol. In Short, Your script is delivered to the browser with the help of the browser’s driver mentioned in the script, and then the browser executes your script. If your browser or driver is updated, your tests are failing due to compatibility issues and you need to update or replace the browser driver as well as update the configuration in the script, and then you can execute your scripts tests. Of course…

--

--