Package org.encog.bot.browse

Examples of org.encog.bot.browse.LoadWebPage.load()


  @Test
  public void testSimple() throws Throwable
  {
    LoadWebPage load = new LoadWebPage(null);
    WebPage page = load.load("a<b>b</b>c");
    TestCase.assertEquals(5,page.getData().size());
   
    TextDataUnit textDU;
    TagDataUnit tagDU;
   
View Full Code Here


 
  @Test
  public void testLink() throws Throwable
  {
    LoadWebPage load = new LoadWebPage(null);
    WebPage page = load.load("<a href=\"index.html\">Link <b>1</b></a>");
    Assert.assertEquals(1,page.getContents().size());
   
    DocumentRange span = page.getContents().get(0);
    Assert.assertEquals(0, span.getBegin());
    Assert.assertEquals(5, span.getEnd());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.