Thursday, September 19, 2019

Post#73.Selenium Grid


Selenium Grid

Selenium Grid is a part of the Selenium Suite that specializes on running multiple tests across different browsers, operating systems, and machines in parallel.

Post#72.Code Review-Coding Standard-SonarLint


Code Review
Code review is examination (often known as peer review) of computer source code to check whether the written code follows the standards.

Code review is intended to find and fix mistakes overlooked in the initial development phase, improving both the overall quality of software and the developers' skills.

Post#71.JavascriptExecutor in Selenium


What is JavascriptExecutor?

JavascriptExecutor is an interface of Selenium API that has the functionality similar to that of Java Script and can interact with HTML DOM elements. Instead of using driver.findElement method of the Selenium WebDriver we can use JavaScriptExecutor Interface to perform similar action on the Page.
JavaScriptExecutor provides two methods "executescript" & "executeAsyncScript" to run javascript on the selected window or current page.

Saturday, September 14, 2019

Post#70.Automation Test Life Cycle


The Automation Test Life Cycle (ATLC) necessitates an organized approach that puts across a process to strategize and initiate automation testing.  ATLC comprises six primary processes or components:

Post#69.Zoom In And Zoom Out page in Selenium


Zoom in and Zoom out Page in selenium WebDriver:

Though such scenarios are not common in automation activities, you may encounter need to simulate browser zoom operation.

Zoom In and Zoom Out operations are carried out by ‘CTRL +’ and ‘CTRL – ‘ key press respectively.