1718192021222324252627
@Test public void fieldset_functionality() { setupExpecations("fieldset"); FluentWebElements fe = fwd.fieldset() .fieldset(By.xpath("@foo = 'bar'")) .fieldset(By.cssSelector("baz")) .fieldsets(); assertThat(fe, notNullValue());
3132333435363738394041
@Test public void fieldsets_functionality() { setupExpecations2("fieldset"); FluentWebElements fe = fwd.fieldset() .fieldsets(By.name("qux")); assertThat(fe, notNullValue()); verifications2("fieldset");
@Test public void area_functionality() { setupExpecations("area"); FluentWebElements fe = fwd.area() .area(By.xpath("@foo = 'bar'")) .area(By.cssSelector("baz")) .areas(); assertThat(fe, notNullValue());
@Test public void adresss_functionality() { setupExpecations2("area"); FluentWebElements fe = fwd.area() .areas(By.name("qux")); assertThat(fe, notNullValue()); verifications2("area");
@Test public void input_functionality() { setupExpecations("input"); FluentWebElements fe = fwd.input() .input(By.xpath("@foo = 'bar'")) .input(By.cssSelector("baz")) .inputs(); assertThat(fe, notNullValue());
@Test public void inputs_functionality() { setupExpecations2("input"); FluentWebElements fe = fwd.input() .inputs(By.name("qux")); assertThat(fe, notNullValue()); verifications2("input");
@Test public void address_functionality() { setupExpecations("address"); FluentWebElements fe = fwd.address() .address(By.xpath("@foo = 'bar'")) .address(By.cssSelector("baz")) .addresses(); assertThat(fe, notNullValue());
@Test public void adresss_functionality() { setupExpecations2("address"); FluentWebElements fe = fwd.address() .addresses(By.name("qux")); assertThat(fe, notNullValue()); verifications2("address");
@Test public void table_functionality() { setupExpecations("table"); FluentWebElements fe = fwd.table() .table(By.xpath("@foo = 'bar'")) .table(By.cssSelector("baz")) .tables(); assertThat(fe, notNullValue());
@Test public void tables_functionality() { setupExpecations2("table"); FluentWebElements fe = fwd.table() .tables(By.name("qux")); assertThat(fe, notNullValue()); verifications2("table");