Home > Software Quality (Page 5)

Code to scroll in web page using selenium

Scroll can be done in two ways one is horizontal and another is vertical. In selenium scroll operation is done using JavaScriptExecutor. Code to scroll vertically Down by 500 pixel: [crayon-673f593935de8172777561/] Code to scroll vertically UP by 500 pixel: [crayon-673f593935def942806728/] Code to scroll horizontally RIGHT by 500 pixel: [crayon-673f593935df1391183009/] Code to scroll horizontally LEFT by 500

This Article is TAGGED in . Read more

Difference between find element and find elements in Selenium

Difference between find element and find elements. findElement() findElements() findElement() method used to access single web element findElements() method used to access multiple web elements. findElement() method returns first matching web element findElements() method returns list of all matching web elements If there is no matching web element then findElement() method throws exception If there is

This Article is TAGGED in , . Read more

Agile estimation and Story points

1) What is story points in Agile Story point is a unit used in agile process which estimates the efforts for implementing a complete feature considering actual efforts, risk involved, uncertainties may occur and complexities of the implementation. The story point actually defines the difficulty level to achieve the goal. The main goal

This Article is TAGGED in , . Read more

Checklist and device matrix for Responsive Testing

Responsive web design is web application designed with respect to all the shapes and sizes of the different screen resolutions of desktop and mobiles in the market. With different technologies, various OS, and its multiple screen sizes demands that the website or application should have tested for the responsiveness. Scenarios / Test

This Article is TAGGED in . Read more

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-673f5939362d4706563361/] Steps to find ID attribute of web element. Open

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

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

Top Web Accessibility Tools

Top Web Accessibility tools which will help to determine whether your web content meets W3 recommended Accessibility guideline or not.  WAVE Browser Extensions  : This extension is available for chrome & Firefox. This extension runs entirely within web browser. Not sending any information to server. Easy to use, after installing extension

This Article is TAGGED in . Read more