this.currentElements = currentElements;
}
protected Internal.BaseFluentWebElements newFluentWebElements(MultipleResult multiple) {
List<WebElement> result = multiple.getResult();
Context ctx = multiple.getCtx();
List<FluentWebElement> elems = new ArrayList<FluentWebElement>();
for (WebElement aResult : result) {
elems.add(new FluentWebElement(delegate, new Internal.WebElementHolder(null, aResult, null), ctx, monitor, booleanInsteadOfNotFoundException));
}
return new FluentWebElements(delegate, elems, ctx, monitor, booleanInsteadOfNotFoundException);