/** Double Click on the element */ public FluentWebElement doubleClick() { Action action = new Actions(FluentThread.get().getDriver()).doubleClick(webElement).build(); action.perform(); return this; }
/** * Construct a FillConstructor in order to allow easy fill Be careful - only the visible elements * are filled */ public FillConstructor fill() { return new FillConstructor(this, FluentThread.get().getDriver()); }