예제 #1
0
 /**
  * Method finds label by xpath.
  *
  * @param xpathExpression locator
  * @return get label by xpath
  */
 public static ILabel getByXpath(final String xpathExpression) {
   return get(ControlLocation.getByXPath(xpathExpression));
 }
예제 #2
0
 /**
  * Method finds grid by xpath.
  *
  * @param xpathExpression locator
  * @return get grid by xpath
  */
 public static Grid getByXpath(final String xpathExpression) {
   return getGrid(ControlLocation.getByXPath(xpathExpression));
 }