diff --git a/client/java/DefaultSelenium.java b/client/java/DefaultSelenium.java index 0ffbaf4..960b71c 100644 --- a/client/java/DefaultSelenium.java +++ b/client/java/DefaultSelenium.java @@ -190,6 +190,10 @@ public void flexSelect(String locator,String options) { public void flexType(String locator,String options) { commandProcessor.doCommand("flexType", new String[] {locator,options}); } + + public void flexFocusOut(String locator,String options) { + commandProcessor.doCommand("flexFocusOut", new String[] {locator,options}); + } public void flexDragDropElemToElem(String locator,String options) { commandProcessor.doCommand("flexDragDropElemToElem", new String[] {locator,options}); diff --git a/extension/chrome/content/extensions/extension-flexpilot.js b/extension/chrome/content/extensions/extension-flexpilot.js index 6491b0e..55f42a7 100644 --- a/extension/chrome/content/extensions/extension-flexpilot.js +++ b/extension/chrome/content/extensions/extension-flexpilot.js @@ -186,6 +186,10 @@ try { return this.doCommand("flexSelect", [locator, options], this.handleResults); }; + RemoteSelenium.prototype.doFlexFocusOut = function(locator, options) { + return this.doCommand("flexFocusOut", [locator, options], this.handleResults); + }; + RemoteSelenium.prototype.doFlexDragDropElemToElem = function(locator, options) { return this.doCommand("flexDragDropElemToElem", [locator, options], this.handleResults); };