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,
       });
 }
示例#10
0
 public void mouseUpRight(String locator) {
   commandProcessor.doCommand(
       "mouseUpRight",
       new String[] {
         locator,
       });
 }
示例#11
0
 public void mouseMove(String locator) {
   commandProcessor.doCommand(
       "mouseMove",
       new String[] {
         locator,
       });
 }
示例#12
0
 public void keyUp(String locator, String keySequence) {
   commandProcessor.doCommand(
       "keyUp",
       new String[] {
         locator, keySequence,
       });
 }
示例#13
0
 public void focus(String locator) {
   commandProcessor.doCommand(
       "focus",
       new String[] {
         locator,
       });
 }
示例#14
0
 public void fireEvent(String locator, String eventName) {
   commandProcessor.doCommand(
       "fireEvent",
       new String[] {
         locator, eventName,
       });
 }
示例#15
0
 public void openWindow(String url, String windowID) {
   commandProcessor.doCommand(
       "openWindow",
       new String[] {
         url, windowID,
       });
 }
示例#16
0
 public void setSpeed(String value) {
   commandProcessor.doCommand(
       "setSpeed",
       new String[] {
         value,
       });
 }
示例#17
0
 public void selectPopUp(String windowID) {
   commandProcessor.doCommand(
       "selectPopUp",
       new String[] {
         windowID,
       });
 }
示例#18
0
 public void uncheck(String locator) {
   commandProcessor.doCommand(
       "uncheck",
       new String[] {
         locator,
       });
 }
示例#19
0
 public void waitForPopUp(String windowID, String timeout) {
   commandProcessor.doCommand(
       "waitForPopUp",
       new String[] {
         windowID, timeout,
       });
 }
示例#20
0
 public void select(String selectLocator, String optionLocator) {
   commandProcessor.doCommand(
       "select",
       new String[] {
         selectLocator, optionLocator,
       });
 }
示例#21
0
 public void highlight(String locator) {
   commandProcessor.doCommand(
       "highlight",
       new String[] {
         locator,
       });
 }
示例#22
0
 public void removeSelection(String locator, String optionLocator) {
   commandProcessor.doCommand(
       "removeSelection",
       new String[] {
         locator, optionLocator,
       });
 }
示例#23
0
 public void dragAndDrop(String locator, String movementsString) {
   commandProcessor.doCommand(
       "dragAndDrop",
       new String[] {
         locator, movementsString,
       });
 }
示例#24
0
 public void removeAllSelections(String locator) {
   commandProcessor.doCommand(
       "removeAllSelections",
       new String[] {
         locator,
       });
 }
示例#25
0
 public void assignId(String locator, String identifier) {
   commandProcessor.doCommand(
       "assignId",
       new String[] {
         locator, identifier,
       });
 }
示例#26
0
 public void submit(String formLocator) {
   commandProcessor.doCommand(
       "submit",
       new String[] {
         formLocator,
       });
 }
示例#27
0
 public void ignoreAttributesWithoutValue(String ignore) {
   commandProcessor.doCommand(
       "ignoreAttributesWithoutValue",
       new String[] {
         ignore,
       });
 }
示例#28
0
 public void open(String url) {
   commandProcessor.doCommand(
       "open",
       new String[] {
         url,
       });
 }
示例#29
0
 public void setTimeout(String timeout) {
   commandProcessor.doCommand(
       "setTimeout",
       new String[] {
         timeout,
       });
 }
示例#30
0
 public void doubleClickAt(String locator, String coordString) {
   commandProcessor.doCommand(
       "doubleClickAt",
       new String[] {
         locator, coordString,
       });
 }