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