166167168169170171172173174175
nfwd.acronym(BYID); } @Test public void testabbr() throws Exception { when(wd.findElement(tagName("abbr"))).thenThrow(new NotFoundException()); nfwd.abbr(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.abbr(BYID); }
174175176177178179180181182183
nfwd.abbr(BYID); } @Test public void testaddress() throws Exception { when(wd.findElement(tagName("address"))).thenThrow(new NotFoundException()); nfwd.address(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.address(BYID); }
182183184185186187188189190191
nfwd.address(BYID); } @Test public void testblockquote() throws Exception { when(wd.findElement(tagName("blockquote"))).thenThrow(new NotFoundException()); nfwd.blockquote(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.blockquote(BYID); }
190191192193194195196197198199
nfwd.blockquote(BYID); } @Test public void testarea() throws Exception { when(wd.findElement(tagName("area"))).thenThrow(new NotFoundException()); nfwd.area(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.area(BYID); }
198199200201202203204205206207
nfwd.area(BYID); } @Test public void testlabel() throws Exception { when(wd.findElement(tagName("label"))).thenThrow(new NotFoundException()); nfwd.label(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.label(BYID); }
206207208209210211212213214215
nfwd.label(BYID); } @Test public void testobject() throws Exception { when(wd.findElement(tagName("object"))).thenThrow(new NotFoundException()); nfwd.object(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.object(BYID); }
214215216217218219220221222223
nfwd.object(BYID); } @Test public void testnav() throws Exception { when(wd.findElement(tagName("nav"))).thenThrow(new NotFoundException()); nfwd.nav(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.nav(BYID); }
222223224225226227228229230231
nfwd.nav(BYID); } @Test public void testtbody() throws Exception { when(wd.findElement(tagName("tbody"))).thenThrow(new NotFoundException()); nfwd.tbody(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.tbody(BYID); }
230231232233234235236237238239
nfwd.tbody(BYID); } @Test public void testImg() throws Exception { when(wd.findElement(tagName("img"))).thenThrow(new NotFoundException()); nfwd.img(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.img(BYID); }
238239240241242243244245246247
nfwd.img(BYID); } @Test public void testTable() throws Exception { when(wd.findElement(tagName("table"))).thenThrow(new NotFoundException()); nfwd.table(); when(wd.findElement(BYID)).thenThrow(new NotFoundException()); nfwd.table(BYID); }