Package org.encog.bot.browse.range

Examples of org.encog.bot.browse.range.Form.findType()


    Browser b = new Browser();
    b.navigate(new URL("http://www.httprecipes.com/1/7/get.php"));
    WebPage page = b.getCurrentPage();
    Assert.assertTrue( page.getTitle().getTextOnly().indexOf("HTTP")!=-1 );
    Form form = (Form)page.find(Form.class, 0);
    Input input1 = form.findType("text", 0);   
    input1.setValue("New York");
    b.navigate(form);
    page = b.getCurrentPage();
    Assert.assertTrue( page.getTitle().getTextOnly().indexOf("HTTP")!=-1 );
  }
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.