Package net.sf.gluent.doc.fluente2etests.rebelforum.Observed

Examples of net.sf.gluent.doc.fluente2etests.rebelforum.Observed.ObservedStringImpl


    Assert.assertEquals(value, element.asText());
  }

  @Override
  public void memorizeElementTextContent(String id, ObservedString observation) {
    ObservedStringImpl observationImpl = (ObservedStringImpl) observation;
    HtmlElement element = htmlPage().getHtmlElementById(id);
    String content = element.asText();
    log("Memorizing content of element '" + id + "' ('" + content
        + "') as observation " + observationImpl.id());
    observationImpl.setValue(content);
  }
View Full Code Here

TOP

Related Classes of net.sf.gluent.doc.fluente2etests.rebelforum.Observed.ObservedStringImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.