Author : Ashwini Velapure (Test Automation Engineer) https://www.linkedin.com/in/ashwinivelapure
What is Automation Framework?
In simple words ,it
is nothing but structure of code.
While starting for
Automation Testing ,we need to have clear understanding for different types
of automation framework.
Types of Automation Framework:
Linear FrameWork:
It is just
sequential...
Tuesday, 24 May 2016
May 24, 2016
Automation Framework
Sunday, 22 May 2016
May 22, 2016
TestNG| Creating the First Case
How to create Test Case using TestNG?
Creating TestCase is simple using TestNG. The main motive to create a Test Case using TestNG is because of it powerful framework and to avoid main() method.
Steps to create a TestNG Test case
Ensure TestNG is correctly configured in Eclipse(Install TestNG)
Import...
Saturday, 21 May 2016
May 21, 2016
Reading a Excel File using Apache POI
Author : Ashwini Velapure (Test Automation Engineer) https://www.linkedin.com/in/ashwinivelapure
Steps to Read the Excel File
Specify the Location of File
Load WorkBook
Load Sheet: Sheet can be loaded via getSheetAt() method , sheet name /index can be passed as argument.By default Sheet1 has zero...
Friday, 20 May 2016
May 20, 2016
What is Apache POI and how to Download it
Author : Ashwini Velapure (Test Automation Engineer) https://www.linkedin.com/in/ashwinivelapure
APACHE POI
What is Apache POI?
Apache POI is a powerful Java library to work with different Microsoft Office file formats such as Excel, Power point, Visio, MS Word etc.
In this API we can handle different...
Friday, 6 May 2016
May 06, 2016
TestNG :Annotations Basic Concept
Annotations and its usage in Test NG
TestNG supports a series of annotations which are invoked when running the code. The Annotations is the powerful feature provided by TestNG in order to avoid using the Main() method.
Following are most commonly used annotations in Test NG
@BeforeSuite :-Annotates methods that will be run before any method in a given is run.@BeforeGroups:-Annotates methods that...
Sunday, 1 May 2016
May 01, 2016
TestNG and its Installation
What is TestNG?
TestNG is a testing framework for the java programming language inspired by JUnit and NUnit.The design goal is to cover wide range of Testing: Unit,Functional ,Regression etc.
Advantages of TestNG
TestNG supports many powerful features & it is easy to use. Let’s see what all...
May 01, 2016
Creating Object Repository Using Properties file in Selenium Webdriver

What are Properties file and why we need it?
In Selenium web driver there is not any build in facility to create object repository, so maintenance of page objects becomes very hard if we write all objects of page on code level.So we can create Properties file support of java software in order to store...