246247248249250251252253254255
nfwd.table(BYID); } @Test public void testFieldset() throws Exception { when(wd.findElement(tagName("fieldset"))).thenThrow(new NotFoundException()); nfwd.fieldset(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.fieldset(BYID); }
255256257258259260261262263264
} @Test public void testLegend() throws Exception { when(wd.findElement(tagName("legend"))).thenThrow(new NotFoundException()); nfwd.legend(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.legend(BYID); }
263264265266267268269270271272
nfwd.legend(BYID); } @Test public void testTr() throws Exception { when(wd.findElement(tagName("tr"))).thenThrow(new NotFoundException()); nfwd.tr(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.tr(BYID); }
271272273274275276277278279280
nfwd.tr(BYID); } @Test public void testTd() throws Exception { when(wd.findElement(tagName("td"))).thenThrow(new NotFoundException()); nfwd.td(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.td(BYID); }
279280281282283284285286287288
nfwd.td(BYID); } @Test public void testTh() throws Exception { when(wd.findElement(tagName("th"))).thenThrow(new NotFoundException()); nfwd.th(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.th(BYID); }
287288289290291292293294295296
nfwd.th(BYID); } @Test public void testUl() throws Exception { when(wd.findElement(tagName("ul"))).thenThrow(new NotFoundException()); nfwd.ul(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.ul(BYID); }
295296297298299300301302303304
nfwd.ul(BYID); } @Test public void testOl() throws Exception { when(wd.findElement(tagName("ol"))).thenThrow(new NotFoundException()); nfwd.ol(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.ol(BYID); }
303304305306307308309310311312
nfwd.ol(BYID); } @Test public void testForm() throws Exception { when(wd.findElement(tagName("form"))).thenThrow(new NotFoundException()); nfwd.form(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.form(BYID); }
311312313314315316317318319320
nfwd.form(BYID); } @Test public void testTextarea() throws Exception { when(wd.findElement(tagName("textarea"))).thenThrow(new NotFoundException()); nfwd.textarea(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.textarea(BYID); }
319320321322323324325326327328
nfwd.textarea(BYID); } @Test public void testOption() throws Exception { when(wd.findElement(tagName("option"))).thenThrow(new NotFoundException()); nfwd.option(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.option(BYID); }