public void contextMenuAt(String locator, String coordString) { commandProcessor.doCommand( "contextMenuAt", new String[] { locator, coordString, }); }
public void allowNativeXpath(String allow) { commandProcessor.doCommand( "allowNativeXpath", new String[] { allow, }); }
public void waitForCondition(String script, String timeout) { commandProcessor.doCommand( "waitForCondition", new String[] { script, timeout, }); }
public void setMouseSpeed(String pixels) { commandProcessor.doCommand( "setMouseSpeed", new String[] { pixels, }); }
public void setCursorPosition(String locator, String position) { commandProcessor.doCommand( "setCursorPosition", new String[] { locator, position, }); }
public void selectFrame(String locator) { commandProcessor.doCommand( "selectFrame", new String[] { locator, }); }
public void answerOnNextPrompt(String answer) { commandProcessor.doCommand( "answerOnNextPrompt", new String[] { answer, }); }
public void mouseMoveAt(String locator, String coordString) { commandProcessor.doCommand( "mouseMoveAt", new String[] { locator, coordString, }); }
public void typeKeys(String locator, String value) { commandProcessor.doCommand( "typeKeys", new String[] { locator, value, }); }
public void mouseUpRight(String locator) { commandProcessor.doCommand( "mouseUpRight", new String[] { locator, }); }
public void mouseMove(String locator) { commandProcessor.doCommand( "mouseMove", new String[] { locator, }); }
public void keyUp(String locator, String keySequence) { commandProcessor.doCommand( "keyUp", new String[] { locator, keySequence, }); }
public void focus(String locator) { commandProcessor.doCommand( "focus", new String[] { locator, }); }
public void fireEvent(String locator, String eventName) { commandProcessor.doCommand( "fireEvent", new String[] { locator, eventName, }); }
public void openWindow(String url, String windowID) { commandProcessor.doCommand( "openWindow", new String[] { url, windowID, }); }
public void setSpeed(String value) { commandProcessor.doCommand( "setSpeed", new String[] { value, }); }
public void selectPopUp(String windowID) { commandProcessor.doCommand( "selectPopUp", new String[] { windowID, }); }
public void uncheck(String locator) { commandProcessor.doCommand( "uncheck", new String[] { locator, }); }
public void waitForPopUp(String windowID, String timeout) { commandProcessor.doCommand( "waitForPopUp", new String[] { windowID, timeout, }); }
public void select(String selectLocator, String optionLocator) { commandProcessor.doCommand( "select", new String[] { selectLocator, optionLocator, }); }
public void highlight(String locator) { commandProcessor.doCommand( "highlight", new String[] { locator, }); }
public void removeSelection(String locator, String optionLocator) { commandProcessor.doCommand( "removeSelection", new String[] { locator, optionLocator, }); }
public void dragAndDrop(String locator, String movementsString) { commandProcessor.doCommand( "dragAndDrop", new String[] { locator, movementsString, }); }
public void removeAllSelections(String locator) { commandProcessor.doCommand( "removeAllSelections", new String[] { locator, }); }
public void assignId(String locator, String identifier) { commandProcessor.doCommand( "assignId", new String[] { locator, identifier, }); }
public void submit(String formLocator) { commandProcessor.doCommand( "submit", new String[] { formLocator, }); }
public void ignoreAttributesWithoutValue(String ignore) { commandProcessor.doCommand( "ignoreAttributesWithoutValue", new String[] { ignore, }); }
public void open(String url) { commandProcessor.doCommand( "open", new String[] { url, }); }
public void setTimeout(String timeout) { commandProcessor.doCommand( "setTimeout", new String[] { timeout, }); }
public void doubleClickAt(String locator, String coordString) { commandProcessor.doCommand( "doubleClickAt", new String[] { locator, coordString, }); }