Selenium - orientado a dados usando Excel

Ao projetar um teste, parametrizar os testes é inevitável. Faremos uso do Apache POI - Excel JAR's para conseguir o mesmo. Ajuda-nos a ler e escrever no Excel.

Baixar JAR

Step 1 - Navegue até o URL - https://poi.apache.org/download.html e baixe o formato ZIP.

Step 2 - Clique no link Mirror para baixar os JAR's.

Step 3 - Descompacte o conteúdo em uma pasta.

Step 4 - O conteúdo descompactado será exibido conforme mostrado abaixo.

Step 5 - Agora crie um novo projeto e adicione todos os 'JARs externos' na pasta 'poi-3.10.FINAL'.

Step 6 - Agora adicione todos os 'JARs externos' na pasta 'ooxml-lib'.

Step 7 - Agora adicione todos os 'JARs externos' na pasta 'lib'.

Step 8 - O JAR adicionado é exibido conforme mostrado abaixo.

Step 9- O Package Explorer é exibido conforme mostrado abaixo. Além disso, adicione JARs relacionados ao 'WebDriver'

Parametrização

Para demonstração, iremos parametrizar o teste da calculadora percentual.

Step 1- Vamos parametrizar todas as entradas necessárias para a calculadora percentual usando o Excel. O Excel projetado é mostrado abaixo.

Step 2 - Execute todas as funções da calculadora de porcentagem para todos os parâmetros especificados.

Step 3- Vamos criar métodos genéricos para acessar o arquivo Excel usando os JARs importados. Esses métodos nos ajudam a obter dados de uma célula específica ou definir dados de uma célula específica, etc.

import java.io.*;
import org.apache.poi.xssf.usermodel.*;
    
public class ExcelUtils {
   private XSSFSheet ExcelWSheet;
   private XSSFWorkbook ExcelWBook;
   
   //Constructor to connect to the Excel with sheetname and Path
   public Excelutils(String Path, String SheetName) throws Exception {
   
      try {
         // Open the Excel file
         FileInputStream ExcelFile = new FileInputStream(Path);
         
         // Access the required test data sheet
         ExcelWBook = new XSSFWorkbook(ExcelFile);
         ExcelWSheet = ExcelWBook.getSheet(SheetName);
      } catch (Exception e) {
         throw (e);
      }
   }
      
   //This method is to set the rowcount of the excel.
   public int excel_get_rows() throws Exception {
   
      try {
         return ExcelWSheet.getPhysicalNumberOfRows();
      } catch (Exception e) {
         throw (e);
      }
   }
   
   //This method to get the data and get the value as strings.
   public String getCellDataasstring(int RowNum, int ColNum) throws Exception {
   
      try {
         String CellData =
            ExcelWSheet.getRow(RowNum).getCell(ColNum).getStringCellValue();
         System.out.println("The value of CellData " + CellData);
         return CellData;
      } catch (Exception e) {
         return "Errors in Getting Cell Data";
      }
   }
   
   //This method to get the data and get the value as number.
   public double getCellDataasnumber(int RowNum, int ColNum) throws Exception {
   
      try {
         double CellData =
            ExcelWSheet.getRow(RowNum).getCell(ColNum).getNumericCellValue();
         System.out.println("The value of CellData " + CellData);
         return CellData;
      } catch (Exception e) {
         return 000.00;
      }
   }
}

Step 4 - Agora adicione um método principal que irá acessar os métodos Excel que desenvolvemos.

public class xldemo {

   public static void main(String[] args) throws Exception {
      ExcelUtils  dd = new ExcelUtils ("C:\\Book1.xlsx","Sheet1");
      System.out.println("The Row count is " + dd.excel_get_rows());

      dd.getCellDataasnumber(1, 1);
      dd.getCellDataasnumber(1, 2);
      dd.getCellDataasnumber(1, 3);
      dd.getCellDataasnumber(2, 1);
      dd.getCellDataasnumber(2, 2);
      dd.getCellDataasnumber(2, 3);
      dd.getCellDataasnumber(3, 1);
      dd.getCellDataasnumber(3, 2);
      dd.getCellDataasnumber(3, 3);
   }

}

Resultado

Ao executar o script, a saída é exibida no console conforme mostrado abaixo.