Home > QA (Page 7)

API Automation Using Katalon Studio

Follow below steps to cofigure API Automation project. 1.Open Katalon studio by running exe file. 2.By Default it will create folders as shown below. 3.Right click on Object Repository > New > Web Service Request 4.Enter Name, Request Type and URL and click on OK 5.Test the API by clicking on Test Request 6.After successful response

This Article is TAGGED in , . Read more

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-673f59b35c23a839670338/] Code to scroll vertically UP by 500 pixel: [crayon-673f59b35c243400423075/] Code to scroll horizontally RIGHT by 500 pixel: [crayon-673f59b35c246312409445/] 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

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-673f59b35c73c640004130/] 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-673f59b35c82b977110884/] Add below code in onPrepare function of configuration file [crayon-673f59b35c82e238454026/] Code to do image comparison [crayon-673f59b35c830427015246/] ImageName is image file name exist in baseline folder. If image is not

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

Test Cases for drop-down list (multiple selection) in website

We all are known about the multiple item selection drop-down list. It is used for select multiple items under a box or menu. By selecting items we can categories the list with help of drop-down menu. By default drop-down list will display only one item. Below are some test cases which

This Article is TAGGED in , . Read more