1718192021222324252627
@Test public void acronym_functionality() { setupExpecations("acronym"); FluentWebElements fe = fwd.acronym() .acronym(By.xpath("@foo = 'bar'")) .acronym(By.cssSelector("baz")) .acronyms(); assertThat(fe, notNullValue());
3132333435363738394041
@Test public void acronyms_functionality() { setupExpecations2("acronym"); FluentWebElements fe = fwd.acronym() .acronyms(By.name("qux")); assertThat(fe, notNullValue()); verifications2("acronym");
@Test public void li_functionality() { setupExpecations("li"); FluentWebElements fe = fwd.li() .li(By.xpath("@foo = 'bar'")) .li(By.cssSelector("baz")) .lis(); assertThat(fe, notNullValue());
@Test public void lis_functionality() { setupExpecations2("li"); FluentWebElements fe = fwd.li() .lis(By.name("qux")); assertThat(fe, notNullValue()); verifications2("li");
@Test public void p_functionality() { setupExpecations("p"); FluentWebElements fe = fwd.p() .p(By.xpath("@foo = 'bar'")) .p(By.cssSelector("baz")) .ps(); assertThat(fe, notNullValue());
@Test public void ps_functionality() { setupExpecations2("p"); FluentWebElements fe = fwd.p() .ps(By.name("qux")); assertThat(fe, notNullValue()); verifications2("p");
@Test public void tbody_functionality() { setupExpecations("tbody"); FluentWebElements fe = fwd.tbody() .tbody(By.xpath("@foo = 'bar'")) .tbody(By.cssSelector("baz")) .tbodys(); assertThat(fe, notNullValue());
@Test public void adresss_functionality() { setupExpecations2("tbody"); FluentWebElements fe = fwd.tbody() .tbodys(By.name("qux")); assertThat(fe, notNullValue()); verifications2("tbody");
@Test public void h4_functionality() { setupExpecations("h4"); FluentWebElements fe = fwd.h4() .h4(By.xpath("@foo = 'bar'")) .h4(By.cssSelector("baz")) .h4s(); assertThat(fe, notNullValue());
@Test public void h4s_functionality() { setupExpecations2("h4"); FluentWebElements fe = fwd.h4() .h4s(By.name("qux")); assertThat(fe, notNullValue()); verifications2("h4");