11. Read excel file in selenium using JExcel

As we, all know Selenium support only browser automation, so for reading and writing with Excel files we have to user third party API like JExcel and Apache POI.
JExcel- JExcel is free API to work with Excel files; it comes with predefined method, classes and interface, which we can directly use.

Limitation of JExcel- It only support .xls files it means files whose extension is .xls files 
some useful classes and interface, which we will be using
Workbook (Class) – Will handle workbook.
Sheet (Interface) – Which will handle sheets
Cell (Interface) – Which will handle cell

Download JExcel API


package Others;
import java.io.File;
import java.io.IOException;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
import org.testng.annotations.Test;
public class excel {

            @Test
            public void TestReadData(){

                        // You need to use File class which will ask for file location.I specified  base// directory //using dot(.) operator then inside data folder I have testdata.xls// stored

                        File src=new File("D:\\excelsample.xls");

                        try {
                                    // Workbook is a class in Jexcel which will take file as an argument and getWork//book is a predefined method which will read the workbook and will return the w//Workbook object

                                    Workbook wb=Workbook.getWorkbook(src);

                                    // Workbook is loaded now we have to load sheet so using workbook object (wb) we// can call getSheet method which will take index as an argument and will load t//he sheet, we can also specify the sheetname also

                                    Sheet sh1=wb.getSheet(0);

                                    // Sheet is loaded then we have to read cell so using sh1 object call getCell me//thod which we take two arguments getCell(column,row)

                                    Cell c1=sh1.getCell(0,0);

                                    //Cell is loaded then using getContents method we have  to extract the data usin//g getContents() methods
                                    // this method will always return you String.
                                    // now you are done

                                    String data1=c1.getContents();

                                    System.out.println(data1);

                                    System.out.println("Sheet data is "+data1);

                        } catch (BiffException e) {

                                    e.printStackTrace();

                        }
                        catch (IOException e){
                                    e.printStackTrace();
                        }
            }
}



No comments:

Post a Comment