Package com.crawljax.browser

Examples of com.crawljax.browser.EmbeddedBrowser.goToUrl()


    // TODO Stefan; Refactor out the direct use of FirefoxDriver
    EmbeddedBrowser browser =
            WebDriverBackedEmbeddedBrowser.withDriver(new FirefoxDriver(),  ImmutableSortedSet.<String> of(), 200, 300);
    File index = new File(INDEX);
    String html = "";
    browser.goToUrl(new URL("file://" + index.getAbsolutePath()));
    html = browser.getStrippedDom();
    assertNotNull(html);

    Document doc = DomUtils.asDocument(html);
    assertNotNull(doc);
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.