use of com.epam.reportportal.annotations.attribute.Attributes in project SeleniumFramework by AutoInfra.
the class SearchTest method searchInDuckDuckGo.
@Attributes
@SneakyThrows
@JiraIssue(IssueID = "AUTOINFRA-4")
// @Test(description = "DuckDuckSearch")
@Parameters({ "keywordToSearch" })
public void searchInDuckDuckGo(String keywordfromTestNG) {
SearchPage SP = new SearchPage(driver);
SP.goTo();
SP.doSearch(keywordfromTestNG);
SP.goToVideos();
int size = SP.printResult();
Assert.assertTrue(size > 100);
}
Aggregations