Ejemplo n.º 1
0
 /** Double Click on the element */
 public FluentWebElement doubleClick() {
   Action action = new Actions(FluentThread.get().getDriver()).doubleClick(webElement).build();
   action.perform();
   return this;
 }
Ejemplo n.º 2
0
 /**
  * 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());
 }