Author: codenbox
What does Quality mean?

Software testing is more than just a stage in the development process. Testing is a philosophy that should embrace the entire application management life cycle. In order to achieve high quality for our products, we have to define…
Read More »Test Case Standard

Each test case should include the following: Test Case ID Prerequisites Platform (device) , environment Module Name Test Title Description Test steps Test Designed by/date Test Executed by/date Test Priority Test Data (if any) Status
Read More »Release Testing Signoff

QA testing in *QA-XXXX* has been completed and passed. Ready for deployment in Production. Summary of test execution details are listed below: *Test Execution Results*: % Executed / Plan: 20/20 = 100% % Passed / Executed: 20/20 =…
Read More »Manual testing end to end guide!

Every software project has three crucial aspects, that are cost, time and quality. This is achieved by testing software regularly. Software Testing is an integral part of any IT project. The software is tested to detect bugs and…
Read More »How to handle Exception in Java?

What is Exception? When an error occurred in a program during execution java will throw an error message which is technically call Exception(throw an error). As a result test case gets failed in Selenium and stopped to execute….
Read More »What is Test Automation Framework?

A test automation framework is a set of concepts, rules and best practices which can follow in a systematic way to achieve the desired results. There are different type of automation framework Data Driven Framework Keyword Driven Framework Hybrid Framework…
Read More »Advance techniques for Locators

As we know there are 8 locators are available in Selenium as below: Find different elements on a web page using Locators xPath xpath required for finding the dynamic element and traverse between various elements of the…
Read More »Locators in Selenium

Locators are the way to find or address web elements in html page. In Selenium there are 8 locators are available as below: Find different elements on a web page using Locators xPath xpath required for finding…
Read More »Selenium Headless Browser Testing

A headless browser is a web-browser without a graphical user interface. This program is behave like a browser but does not show any visual browser interface or GUI. Examples of Headless Drivers: HtmlUnit Ghost PhantomJS Watir-webdriver HTMLUnit Driver :…
Read More »Differences between isDisplayed (), isEnabled() & isSelected() methods

All methods are Boolean but the differences are: 1. isDisplayed(): method is used to verify whether any object on a site is present or not. So, it’s applicable to any web object and returned true or false. 2….
Read More »