1718192021222324252627
@Test public void th_functionality() { setupExpecations("th"); FluentWebElements fe = fwd.th() .th(By.xpath("@foo = 'bar'")) .th(By.cssSelector("baz")) .ths(); assertThat(fe, notNullValue());
3132333435363738394041
@Test public void ths_functionality() { setupExpecations2("th"); FluentWebElements fe = fwd.th() .ths(By.name("qux")); assertThat(fe, notNullValue()); verifications2("th");
@Test public void abbr_functionality() { setupExpecations("abbr"); FluentWebElements fe = fwd.abbr() .abbr(By.xpath("@foo = 'bar'")) .abbr(By.cssSelector("baz")) .abbrs(); assertThat(fe, notNullValue());
@Test public void abbrs_functionality() { setupExpecations2("abbr"); FluentWebElements fe = fwd.abbr() .abbrs(By.name("qux")); assertThat(fe, notNullValue()); verifications2("abbr");
@Test public void h3_functionality() { setupExpecations("h3"); FluentWebElements fe = fwd.h3() .h3(By.xpath("@foo = 'bar'")) .h3(By.cssSelector("baz")) .h3s(); assertThat(fe, notNullValue());
@Test public void h3s_functionality() { setupExpecations2("h3"); FluentWebElements fe = fwd.h3() .h3s(By.name("qux")); assertThat(fe, notNullValue()); verifications2("h3");
@Test public void h1_functionality() { setupExpecations("h1"); FluentWebElements fe = fwd.h1() .h1(By.xpath("@foo = 'bar'")) .h1(By.cssSelector("baz")) .h1s(); assertThat(fe, notNullValue());
@Test public void h1s_functionality() { setupExpecations2("h1"); FluentWebElements fe = fwd.h1() .h1s(By.name("qux")); assertThat(fe, notNullValue()); verifications2("h1");
@Test public void div_functionality() { setupExpecations("div"); FluentWebElements fe = fwd.div() .div(By.xpath("@foo = 'bar'")) .div(By.cssSelector("baz")) .divs(); assertThat(fe, notNullValue());
@Test public void divs_functionality() { setupExpecations2("div"); FluentWebElements fe = fwd.div().divs(By.name("qux")); assertThat(fe, notNullValue()); verifications2("div");