Exemplo n.º 1
0
 public String getAttribute(String attributeLocator) {
   return commandProcessor.getString(
       "getAttribute",
       new String[] {
         attributeLocator,
       });
 }
Exemplo n.º 2
0
 public String getExpression(String expression) {
   return commandProcessor.getString(
       "getExpression",
       new String[] {
         expression,
       });
 }
Exemplo n.º 3
0
 public String getTable(String tableCellAddress) {
   return commandProcessor.getString(
       "getTable",
       new String[] {
         tableCellAddress,
       });
 }
Exemplo n.º 4
0
 public String getSelectedId(String selectLocator) {
   return commandProcessor.getString(
       "getSelectedId",
       new String[] {
         selectLocator,
       });
 }
Exemplo n.º 5
0
 public String getText(String locator) {
   return commandProcessor.getString(
       "getText",
       new String[] {
         locator,
       });
 }
Exemplo n.º 6
0
 public String getEval(String script) {
   return commandProcessor.getString(
       "getEval",
       new String[] {
         script,
       });
 }
Exemplo n.º 7
0
 public String captureEntirePageScreenshotToString(String kwargs) {
   return commandProcessor.getString(
       "captureEntirePageScreenshotToString",
       new String[] {
         kwargs,
       });
 }
Exemplo n.º 8
0
 public String getCookieByName(String name) {
   return commandProcessor.getString(
       "getCookieByName",
       new String[] {
         name,
       });
 }
Exemplo n.º 9
0
 public String getPrompt() {
   return commandProcessor.getString("getPrompt", new String[] {});
 }
Exemplo n.º 10
0
 public String getBodyText() {
   return commandProcessor.getString("getBodyText", new String[] {});
 }
Exemplo n.º 11
0
 public String getTitle() {
   return commandProcessor.getString("getTitle", new String[] {});
 }
Exemplo n.º 12
0
 public String getHtmlSource() {
   return commandProcessor.getString("getHtmlSource", new String[] {});
 }
Exemplo n.º 13
0
 public String getLog() {
   return commandProcessor.getString("getLog", new String[] {});
 }
Exemplo n.º 14
0
 public String getSpeed() {
   return commandProcessor.getString("getSpeed", new String[] {});
 }
Exemplo n.º 15
0
 public String retrieveLastRemoteControlLogs() {
   return commandProcessor.getString("retrieveLastRemoteControlLogs", new String[] {});
 }
Exemplo n.º 16
0
 public void addCustomRequestHeader(String key, String value) {
   commandProcessor.getString("addCustomRequestHeader", new String[] {key, value});
 }
Exemplo n.º 17
0
 public String captureNetworkTraffic(String type) {
   return commandProcessor.getString("captureNetworkTraffic", new String[] {type});
 }
Exemplo n.º 18
0
 public String captureScreenshotToString() {
   return commandProcessor.getString("captureScreenshotToString", new String[] {});
 }
Exemplo n.º 19
0
 public String getLocation() {
   return commandProcessor.getString("getLocation", new String[] {});
 }
Exemplo n.º 20
0
 public String getCookie() {
   return commandProcessor.getString("getCookie", new String[] {});
 }