Hi All,
Is it possible to integrate Extent reports to Hybrid framework project?
I have browsed through the internet, but couldn't find a suitable solution. All the examples over the internet were either for Keyword Driven or Data Driven frameworks where each test case written in a separate method or class are starting with a '@Test' annotation.
For ex: Keyword or Data Driven Framework structure
@Test
Extent report log
Testcase1
@Test
Extent report log
Testcase2
:
:
so on...
Where as in Hybrid Driven framework, all the test cases are written in excel sheets and data is also provided through excel sheets. And there is only one main '@Test' annotation class, from which we execute the Test case in order.
I have integrated Extent reports in Main class, so i only get test case name and pass or fail in the reports with no other information.
For ex: Hybrid Framework structure
@Test
Extent report log
Main class --> call excel sheets reader to execute test cases and iterate through all the test cases. And all the actions functionality is written in Keywords class.
Keyword class
Test case excel sheet -->TCID Keyword ObjectPath Data
Data excel sheet
is there any solutions available ? Any suggestions could be appreciated.
Thanks in advance.