public int getSearchResultCount(String keyword) { search(keyword); return Integer.parseInt(driver.findElement(Loc.getLoc("m.hp.searchcount")).getText().trim()); }
public void search(String keyword) { driver.findElement(Loc.getLoc("m.hp.searchbox")).sendKeys(keyword); }