@Then("The search result is equal to 6") public void searchResultEqualToExpected() { String actualResult = subcategoryPage.getAmountOfSearchResultsInCategory(); Assert.assertEquals( "The search result is equal to 6", Integer.parseInt(actualResult), expected); }
@When("Take the name of the cheapest good") public String selectCheapestGood() { name = subcategoryPage.selectFirstItem().getItemName(); return name; }