Giter VIP home page Giter VIP logo

webautomation_extent's Introduction

WebApp Automation Framework

N|Solid

This is a Selenium Hybrid Framework.

  • Written in JAVA
  • Implemented using TestNG
  • Build Toold - Maven
  • Implemented Page Object Model Design Pattern
  • Excel TestNG @DataProvider
  • Video Recording - Automation-Remarks
  • Ashot - To Capture Full Page Screenshot

Browsers Supported

  • Mozilla Firefox
  • Google Chrome
  • Internet Explorer
  • Opera
  • Microsoft Edge

Headerless Support

  • HTMLUnit
  • Chrome Headless

Platform Support

  • Windows
  • Linux
  • Macintosh

Reporting


Usage

$ git clone https://github.com/GladsonAntony/WebAutomation_Extent.git
$ mvn clean test

Browser Setup

  • Navigate to WebAutomation\src\main\resources change BrowserType in the ApplicationConfig.properties or use Maven to invoke different browsers
$ mvn clean test -DBrowserType=Chrome			#Chrome
$ mvn clean test -DBrowserType=Chrome_Headless		#Chrome Headless
$ mvn clean test -DBrowserType=Firefox			#Mozilla Firefox
$ mvn clean test -DBrowserType=IE			#Internet Explorer
$ mvn clean test -DBrowserType=Edge			#Microsoft Edge
$ mvn clean test -DBrowserType=Edge_Headless			#Microsoft Edge Headless

Report Details

Report Location System.getProperty("user.dir") + "/src/test/resources/Reports/";

Failed Screenshots System.getProperty("user.dir") + "/src/test/resources/Reports/Images";

Video Location System.getProperty("user.dir") + "/src/test/resources/Reports/Videos";


@DataProviders

Method 1:

  • Use TestData.xlsx file as your dataproviders. The Sheet Name should be the name of your Method Name.
  • To use different xlsx file, Create a new @DataProvider method and change the workbook name.
@DataProvider(name="multiSheetExcelRead", parallel=true)
public static Object[][] multiSheetExcelRead(Method method) throws Exception
{
	File file = new File("./src/test/resources/Excel Files/TestData.xlsx");
	String SheetName = method.getName();
	System.out.println(SheetName);
	Object testObjArray[][] = ExcelUtils.getTableArray(file.getAbsolutePath(), SheetName);
	return testObjArray;
}

Method 2:

  • Create Excel Workbook with the same name as your method Name.
@DataProvider(name="excelSheetNameAsMethodName",parallel=true)
public static Object[][] excelSheetNameAsMethodName(Method method) throws Exception
{
	File file = new File("./src/test/resources/Excel Files/"+method.getName()+".xlsx");
	Object testObjArray[][] = ExcelUtils.getTableArray(file.getAbsolutePath());
	return testObjArray;
}

@DataProvider Usuage

To Use Method Name as Excel Workbook Name, Use the following:

@Test(dataProvider="excelSheetNameAsMethodName", dataProviderClass=ExcelDataProvider.class)

To use a Single Workbook with multiple @DataProvider sheets, Use:

NOTE: SheetName should be same name as Method Name

@Test(dataProvider="multiSheetExcelRead", dataProviderClass=ExcelDataProvider.class)

Video Feature

enabledALL -> To Save recorded video for All test case. Stored in "./src/test/resources/Reports/Videos"

enabledFAILED -> To Save recorded video for ONLY FAILED test case. Stored in "./src/test/resources/Reports/Videos"

disabled -> To not save the video

webautomation_extent's People

Contributors

gladsonantony avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

webautomation_extent's Issues

Screenshot is not working

Capture
In images folder, no screenshots are there.
And also in extent report a screenshot image is added, but it likes small square image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.