Пример #1
0
 /**
  * Method finds label by css.
  *
  * @param labelSelector locator
  * @return get label by css
  */
 public static ILabel getByCss(final String labelSelector) {
   return get(ControlLocation.getByCss(labelSelector));
 }
Пример #2
0
 /**
  * Method finds grid by css.
  *
  * @param cssExpression locator
  * @return get grid by css
  */
 public static Grid getByCss(final String cssExpression) {
   return getGrid(ControlLocation.getByCss(cssExpression));
 }