FluentWebDriver fwd = new FluentWebDriver(wd, monitor);
FluentWebElement within = fwd.div().within(secs(10));
when(we.findElement(By.tagName("div"))).thenReturn(we2);
when(we2.getTagName()).thenThrow(new NotFoundException("barf"));
when(timeouts.implicitlyWait(0, TimeUnit.SECONDS)).thenReturn(timeouts);
try {
within.div();