return new NegatingFluentWebDriver(delegate, period, Context.singular(context, "without", null, period), monitor);
}
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);