Friday 19 June 2015

Difference Between get() and navigate() in Selenium

Get v/s Navigate :-
"navigate().to()" and "get()" do exactly the same thing. Only thing is that incase of "get" selenium would wait for the page to fully load before executing the next line of code.

Also "navigate" interface further exposes the ability to move backwards and forwards in your browser's history.

Object Repository in Selenium

Unlike QTP/UFT, Selenium does not offer the default implementation for  object repository. In QTP things are really straightforward, just object spy the controls and add to object repository, and further with the blessings of intellisense feature in its IDE, utilize them easily in writing scripts.

But how we can achieve the same in selenium??..
It can be done by using Properties file feature of Java. Lets begin with some basic explanation.

What is Object Repository?

Object Repository is a centralized location where we can store objects information, it acts as interface between Test script and application in order to identify the objects during the execution.

We always recommend using external file for object repository rather than hard coding the objects and its properties directly into our code. Why this??? As it reduces the maintenance  effort and provides positive ROI, for example say any of the object properties change within our application under test, we can easily change it in external object repository file, rather than searching and doing updates  for that object individually in the code.

Principle:-
A basic object repository can be implemented as a collection of key-value pairs, with the key being a logical name identifying the object and the value containing unique objects properties used to identify the object on a screen. For this, we will use a .properties file in Java which is a basic collection of key-value pairs.

Creating Properties File in Eclipse:-

Step1:-
Right click on the Package in the solution Explorer of Eclipse-> New ->Other


Creating Properties file in Eclipse
Adding New File in Eclipse

Or 
Right click on the Package in the solution Explorer of Eclipse-> New ->File (In this case Step-2 below is not required)


Create new file in eclipse
New ->File in Eclipse

Step2:-
General ->File ->Click Next


New file wizard in Eclipse
New Wizard in Eclipse
Step3:-
Give name to the file with .properties extension (Say OR_Gmail_Login.properties) ->Click Finish
Properties file in Java Eclipse
Naming Properties File in Eclipse


Note:- 
We generally create each properties file for every single page and capture all the UI elements present on the page and use it as per the needs.


Adding Key/value Pairs in Properties File:-

Before adding our objects into object repository, let’s outline a simple scenario that we will be automating in Selenium:-

1. Launch Gmail login page.
2. Fill the Username & Password fields and click on Submit button

After creating our empty properties file, now we need to add our elements, in the form of key and Value pairs.
For Example:-

Gmail.LoginPage.txtPassword -> Key
Passwd->Value

Note: - In Value property we have taken the Locator and its value, which will be used to identify our control. As password field, is getting uniquely identified by ID field so we have taken that value.


Properties file with objects in Selenium
Properties File in Java



Code:-
package OR;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;

public class PropertiesFile {
  public static void main(String[] args)  {
   //Creating the File Object
   File file = new File("D:\\Automation\\Selenium\\MyCode\\FirstSeleniumCode\\src\\OR\\OR_Gmail_Login.properties");
   //Creating properties object
   Properties prop = new Properties();
  //Creating InputStream object to read data
   FileInputStream objInput = null;
   try {
    objInput = new FileInputStream(file);
    //Reading properties key/values in file
    prop.load(objInput);
    //Closing the InputStream
    objInput.close();
    } catch (FileNotFoundException e) {
     System.out.println(e.getMessage());   
     
    } catch (IOException e) {
   System.out.println(e.getMessage());
  }
   //Creating the driver instance
   WebDriver driver = new FirefoxDriver();
   //Adding wait
   driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
   //Launching the GMAIL page
   driver.get(prop.getProperty("Gmail.URL"));
   //Entering the UserName
   WebElement element = driver.findElement(By.id(prop.getProperty("Gmail.LoginPage.txtUserName")));
   element.sendKeys("uftHelp@gmail.com");
   //Entering the Password
   element = driver.findElement(By.id(prop.getProperty("Gmail.LoginPage.txtPassword")));
   element.sendKeys("uftHelp");
   //Clicking the SignIn button
   element = driver.findElement(By.id(prop.getProperty("Gmail.LoginPage.btnSignIn")));
   element.click();
   System.out.println("Test Scenario Completed!!");
   //Destroying the driver object
   //driver.close();

  }
}

Angular JS Protractor Installation process - Tutorial Part 1

                     Protractor, formally known as E2E testing framework, is an open source functional automation framework designed spe...