nfwd = new NegatingFluentWebDriver(wd, millis(100), Context.singular(null, "foo", BYID), new Monitor.NULL());
}
@Test
public void testSpan() throws Exception {
when(wd.findElement(tagName("span"))).thenThrow(new NotFoundException());
nfwd.span();
when(wd.findElement(BYID)).thenThrow(new NotFoundException());
nfwd.span(BYID);
}