How TestNg Description Annotation Works In Selenium Example?
package com.selenium.TestNG; import org.testng.annotations.Test; public class TestNg_Description { @Test(description="Simple TestNG Program") public void show() { System.out.println("Hi Method"); } }
Leave a Reply