Ejemplo n.º 1
0
 public boolean isEditable(String locator) {
   return commandProcessor.getBoolean(
       "isEditable",
       new String[] {
         locator,
       });
 }
Ejemplo n.º 2
0
 public boolean isOrdered(String locator1, String locator2) {
   return commandProcessor.getBoolean(
       "isOrdered",
       new String[] {
         locator1, locator2,
       });
 }
Ejemplo n.º 3
0
 public boolean isTextPresent(String pattern) {
   return commandProcessor.getBoolean(
       "isTextPresent",
       new String[] {
         pattern,
       });
 }
Ejemplo n.º 4
0
 public boolean isElementPresent(String locator) {
   return commandProcessor.getBoolean(
       "isElementPresent",
       new String[] {
         locator,
       });
 }
Ejemplo n.º 5
0
 public boolean isChecked(String locator) {
   return commandProcessor.getBoolean(
       "isChecked",
       new String[] {
         locator,
       });
 }
Ejemplo n.º 6
0
 public boolean isSomethingSelected(String selectLocator) {
   return commandProcessor.getBoolean(
       "isSomethingSelected",
       new String[] {
         selectLocator,
       });
 }
Ejemplo n.º 7
0
 public boolean getWhetherThisFrameMatchFrameExpression(String currentFrameString, String target) {
   return commandProcessor.getBoolean(
       "getWhetherThisFrameMatchFrameExpression",
       new String[] {
         currentFrameString, target,
       });
 }
Ejemplo n.º 8
0
 public boolean isCookiePresent(String name) {
   return commandProcessor.getBoolean(
       "isCookiePresent",
       new String[] {
         name,
       });
 }
Ejemplo n.º 9
0
 public boolean getWhetherThisWindowMatchWindowExpression(
     String currentWindowString, String target) {
   return commandProcessor.getBoolean(
       "getWhetherThisWindowMatchWindowExpression",
       new String[] {
         currentWindowString, target,
       });
 }
Ejemplo n.º 10
0
 public boolean isConfirmationPresent() {
   return commandProcessor.getBoolean("isConfirmationPresent", new String[] {});
 }
Ejemplo n.º 11
0
 public boolean isPromptPresent() {
   return commandProcessor.getBoolean("isPromptPresent", new String[] {});
 }