Welcome to SSR Software Testing Training

TestNG Framework

  1. Framework
  2. Details of TestNG
  3. Features of TestNG
  4. How to install in 1.Java Project 2.Maven Project
  5. How to create TestNG class file
  6. Details of Annotations
  7. How to Run TestNG class file
  8. Output reports:1.index.html 2.emailable-report.html
  9. Sequence of execution of annotations
  10. @Test annotation attributes: 1.enabled 2.priority 3.groups 4.dependsOnMethods 5.dependsOnGroups 6.timeOut 7.invocationCount 8.description
  11. Compare Expected Result and Actual Result by using Assert class methods
  12. TestNG Listeners by using ITestListener interface:1.onTestStart() 2.onTestSuccess() 3.onTestFailure() 4.onTestSkipped() etc
  13. Creating testng.xml and Running testNG files
  14. Test Suite Run by XML file
  15. Groups run by XML file
  16. Parameterization,Passing values from XML to variable of TestNG class file by using @Parameters() annotation and parameter tag
  17. Use of @Factory annotation
  18. Use of @DataProvider annotation
  19. Regression and Cross browser suite by using TestNG from work
  20. Data Driven Testing by using @DataProvider annotation
Back