public boolean isEditable(String locator) { return commandProcessor.getBoolean( "isEditable", new String[] { locator, }); }
public boolean isOrdered(String locator1, String locator2) { return commandProcessor.getBoolean( "isOrdered", new String[] { locator1, locator2, }); }
public boolean isTextPresent(String pattern) { return commandProcessor.getBoolean( "isTextPresent", new String[] { pattern, }); }
public boolean isElementPresent(String locator) { return commandProcessor.getBoolean( "isElementPresent", new String[] { locator, }); }
public boolean isChecked(String locator) { return commandProcessor.getBoolean( "isChecked", new String[] { locator, }); }
public boolean isSomethingSelected(String selectLocator) { return commandProcessor.getBoolean( "isSomethingSelected", new String[] { selectLocator, }); }
public boolean getWhetherThisFrameMatchFrameExpression(String currentFrameString, String target) { return commandProcessor.getBoolean( "getWhetherThisFrameMatchFrameExpression", new String[] { currentFrameString, target, }); }
public boolean isCookiePresent(String name) { return commandProcessor.getBoolean( "isCookiePresent", new String[] { name, }); }
public boolean getWhetherThisWindowMatchWindowExpression( String currentWindowString, String target) { return commandProcessor.getBoolean( "getWhetherThisWindowMatchWindowExpression", new String[] { currentWindowString, target, }); }
public boolean isConfirmationPresent() { return commandProcessor.getBoolean("isConfirmationPresent", new String[] {}); }
public boolean isPromptPresent() { return commandProcessor.getBoolean("isPromptPresent", new String[] {}); }