Skip to main content

Read data from Properties file in Selenium

Java properties file is used to store project configuration data or settings. In this blog, we will show you how to read and write to/from a properties file.

In this blog we are going to read username and password from properties file(.config) 

Step 1 :- Create config.properties file in Java project 
Navigate to File menu -> New -> Click on File





Step 2:- Write some data in config.properties file



Step 3 :- Create Java class to read properties file 

Example how preform login using properties file in Seleniuim  :

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.firefox.FirefoxDriver;


public class ReadProper 
{
  public static Properties prop;
  public static void main(String[] args) throws Exception  
{
//File file = new File("D://config.properties");  
 //OR
File file = new File(System.getProperty("user.dir")+"//src//config//config.properties");
//OR  we can use this line 
//FileInputStream file= new //FileInputStream(System.getProperty("user.dir")+"//config//config.properties"); 
   FileInputStream fileInput = null;
  try {
   fileInput = new FileInputStream(file);
   //Create properties Class object 
    prop = new Properties();
   prop.load(fileInput);
      }
  
  catch (Exception e)
  {
   e.printStackTrace();
  }
  
  System.out.println("URL ::" + prop.getProperty("URL"));
  System.out.println("User name::" +prop.getProperty("UserName"));
  System.out.println("Password::" +prop.getProperty("Password"));

  WebDriver driver = new FirefoxDriver();
 driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
 driver.get(prop.getProperty("URL"));
 driver.findElement(By.id("Email")).sendKeys(prop.getProperty("UserName"));
 driver.findElement(By.xpath(".//*[@id='next']")).click();  
 driver.findElement(By.id("Passwd")).sendKeys(prop.getProperty("Password"));
 driver.findElement(By.id("signIn")).click();

  }

}




Comments

Popular posts from this blog

Handle radio button & Check Boxes in Selenium

The main difference between Radio button and Checkbox is that, using radio button we will be able to select only one option from the options available. whereas using checkbox, we can select multiple options. Selenium WebDriver supports Radio Button and Radio Group controls using the WebElement class. We can select and deselect the radio buttons using the click() method of the WebElement class and check whether a radio button is selected or deselected using the isSelected() method. Before performing the click on the Radio buttons or check boxes we will have to verify follwing scenarios :- If Radio button or Checkbox is displayed on the webpage If Radio button or Checkbox is enabled on the webpage Check the default selection of the Radio button or Checkbox We use predefined methods present in selenium to handle check Box and Radio  button :- isDisplayed() isEnabled() isSelected() 1.  isDisplayed () this method returns a Boolean value, if it returns t

How To Send Report In Mail Using Java In Selenium Web driver

Today we will share code how to send any type of selenium report in mail using java. For sending the email using JavaMail API, you need to load the two jar files: mail.jar activation.jar package SeleniumNew; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.activation.FileDataSource; import javax.mail.*;  import javax.mail.internet.*;  public class SendEmail {     public static void main(String[] args)     {                 String host="smtp.gmail.com";          final String user="ashishxx@gmail.com";//change accordingly          final String password="XXX";//change accordingly                    /*String[] to={"AshishXX@gmail.com","Ashishxxx@gmail.com"};           String[] cc={};           String[] bcc={};         */           String to="ashishxx@gmail.com";//change accordingly                     //Get the session object            Properties props = new

Appium architecture (How Appium works internally)

Appium Architecture  A ppium is a cross-platform automation tool, API of it supports both OS (Android and iOS) test scripts.It is tested on simulators (iOS,), emulators (Android), and real devices (iOS, Android)   Appium is an HTTP server written in Node.js that creates and handles WebDriver sessions.The Appium web server follows the same approach as the Selenium WebDriver, which receives HTTP requests from client libraries through JSON and then handles those requests in different ways   JSON wire protocol The JSON wire protocol  ( JSONWP ) is a transport mechanism created by WebDriver developers. This wire protocol is a specific set of predefined, standardized endpoints exposed via a RESTful API.   Appium implements the Mobile JSONWP, the extension to the Selenium JSONWP, and it controls the different mobile device behaviors, such as installing/uninstalling apps over the session Let’s have a look at some of the endpoints from the API which are used to interact with