return newFluentWebElements(multiple(tagName("span"), "span"));
}
protected 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 WebElementHolder(null, aResult, null), ctx, monitor, booleanInsteadOfNotFoundException));
}
return new FluentWebElements(delegate, elems, ctx, monitor, booleanInsteadOfNotFoundException);