Debomita Bhattacharjee has Published 867 Articles

What are the most basic steps to write a web driver script?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 12:06:16

52 Views

The most basic steps to write a web driver script are listed below −Open any browser by creating a webdriver reference pointing to the corresponding browser driver class.Launch any URL with the get() method.Pause for some time for the page load.Confirm that we are on the correct web page.Finally close ... Read More

What is Selenese ?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 12:04:50

2K+ Views

Selenium IDE by default has a language system commonly called Selenese. It is a group of commands used to perform operations on the web. It primarily helps to develop scripts in Selenium IDE.It can verify if an element is present on a screen, alerts, Ajax calls, links and many more. ... Read More

List down the name of the Web drivers supported by Selenium.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 12:03:10

981 Views

The name of the web drivers supported by Selenium are listed below −Google Chrome Driver [ ChromeDriver() supports chrome ]HTML Unit Driver [ WebClient() supports chrome, firefox and IE ]Safari Driver [ SafariDriver() supports Safari ]IOS Driver [ IOSDriver() supports ios ]Android Driver [ AndroidDriver() supports Android ]OperaChromium Driver [ ... Read More

Why does the Selenium WebDriver have an edge over Selenium RC?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 11:57:10

232 Views

Selenium was introduced as a part of version 1.0 of Selenium. Selenium WebDriver was introduced as a part of version 2.0 of Selenium. Selenium RC is deprecated and obsolete now. Though some users still use Selenium RC, the support for it is not there anymore.Selenium RC enabled the feature of ... Read More

What is Selenium Grid?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 11:55:44

218 Views

Selenium Grid is a tool designed to distribute tests across more than one browser and environments. With this concept, we can trigger numerous test cases simultaneously on various devices and platforms. In short, it allows parallel execution.Thus Selenium Grid helps to achieve concurrent test execution saving a large portion of ... Read More

What is the Selenium Web Driver Architecture?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 11:53:21

8K+ Views

Selenium Web Driver architecture in a simplified diagram is described below:Let us now understand the Selenium Web Driver Architecture. Selenium WebDriver API enables interaction between browsers and browser drivers. This architecture consists of four layers namely the Selenium Client Library, JSON Wire Protocol, Browser Drivers and Browsers.Selenium Client Library consists ... Read More

What is Selenium and why is it chosen extensively?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 10-Jun-2020 11:47:04

120 Views

Answer: Selenium is an automation testing framework or suite developed by Jason Huggins in the year 2004. It has been upgraded several times in the past. Selenium WebDriver 2.0 came in the market in the year 2011, 3.0 in the year 2016 and currently the latest version is 4.0.Selenium is ... Read More

Advertisements