How capture the testng report in runtime in eclipse, if it is possible then how..?
Runtime Testng report need to capture
In Testng supports runtime report capturing...?
Please tell me the step how we can capture the report
How capture the testng report in runtime in eclipse, if it is possible then how..?
Runtime Testng report need to capture
In Testng supports runtime report capturing...?
Please tell me the step how we can capture the report
We follow this approach:
driver.findElement(byVar).click()
click(byVar,"Variable name");
In @BeforeMethod, we create the test case's report. In @AfterMethod, we close that file and decide the pass/fail status in suite html file. Its too huge to explain everything here, bro. Hope this gives you a bit clarity.