Home > Software Testing (Page 7)

Importance of Daily standup meeting in an agile process

1) What is the daily standup in an agile process? A short team meeting conducted on a daily basis (Usually before starting the day) to know the task or work status of the team members. The focus of the meeting should be the each team member completed the yesterday's task and have

This Article is TAGGED in , , . Read more

Selenium WebDriver Locator by ID

Here is example to find element by Locator Type as ID  ID is attribute used with HTML element to uniquely identify it in HTML document.  Faster and easiest way to locate an element in HTML document using selenium.  How to find web element by using id in Java language [crayon-685ea6d397016333483090/] Steps to find ID attribute of web element. Open

This Article is TAGGED in , , , . Read more

Code to perform Image comparison in protractor

To perform image comparison in GUI Testing we need to install protractor-image-comparison module it can be installed using below command. Open command prompt and run below command. [crayon-685ea6d3974d9407267752/] Add below code in onPrepare function of configuration file [crayon-685ea6d3974dd405932899/] Code to do image comparison [crayon-685ea6d3974df095191950/] ImageName is image file name exist in baseline folder. If image is not

This Article is TAGGED in , . Read more

Protractor: How to read excel file in node.js? 

To read excel file in nodejs application we required exceljs to be installed. In protractor to read excel file, we need exceljs library along with node and protractor. Here are the steps to install exceljs library. Go to the folder location where you want to install exceljs library. Type npm install exceljsand press Enter. Once

This Article is TAGGED in , , , , . Read more

Selenium – Introduction and Basics

Automation testing – In STLC, Regression testing plays most important part which verifies old functionalities of a web application is working fine while new changes also get along with them well. But the regression testing can be a lengthy and time consuming process. So the testing processes which are repetitive

This Article is TAGGED in , , . Read more

Simple protractor script

Code for sample protractor script: In protractor there are two basic files to execute any automation script. Those are configuration file and specification file. Configuration file contains all configuration related code. And specification file contains test scripts. Configuration file is one for the project and we can have any number

This Article is TAGGED in . Read more

How to install protractor and configure?

To configure protractor below are the steps: 1. Download eclipse from https://www.eclipse.org/downloads/ and install it. 2. Download node.js from https://nodejs.org/en/download/ and install it. 3. Open the command prompt and run below command. It will install protractor globally. “npm install -g protractor”. 4. Run below command in protractor to update webdriver. “webdriver-manager update“. 5. Start the selenium server by running

This Article is TAGGED in . Read more

Handling Popups using protractor

Identify or handle javascript popup/alert using protractor in automation. Javascript popup cannot be inspected. We don't get html for javascript popup. So we cannot find element and it is not possible to perform operation based on web element. There are different types of java script popups. Those are Simple alert, Confirmation

This Article is TAGGED in , , . Read more

Protractor is better than Selenium for Angular Applications.

The selection between selenium or protractor is based on what type of web application we are automating. If your application is angular based then it is feasible to select protractor. In this post you will learn why to use protractor for web based application. Protractor runs on top of selenium webdriver

This Article is TAGGED in , , . Read more

JMeter Installation and launch JMeter on Windows

Installation of JMeter is quite an easy process. Following are the steps to install JMeter on your system: 1. Java installation: User needs to install JVM on the machine before installation of JMeter. Here is the link from which user can download and install latest JDK. When navigated to above url, user

This Article is TAGGED in . Read more