HttpUnit / HtmlUnit等效于android

前端之家收集整理的这篇文章主要介绍了HttpUnit / HtmlUnit等效于android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Android上寻找一个浏览器模拟库,它可以处理类似的东西

>加载网站(http / https)
>重定向:HTTP(3xx状态代码),JavaScript,HMTL标记
>填写html表格
>简单的html解析(可以回退到JSoup)

HttpUnitHtmlUnit会做得很好,但两者都很难在Android上运行.

除了(Android)HttpClient之外是否还有其他选项(因此我自己做了很多以上的选择)?或者我可以以某种方式使用android webkit /浏览器?

提前致谢!

解决方法

我建议你看看 AndroidDriver的硒.这似乎是使用Android测试框架轻松测试WebApplications的简单方法.

您必须使用包含WebView的Activity才能测试HTTP / HTTPs网站.
驱动程序与此活动一起实例化:

WebDriver driver = new AndroidWebDriver(getActivity());

这是一个示例测试,引自上面的链接

public void testGoogleWorks()
    // Loads www.google.com
    driver.get("http://www.google.com");
    // Lookup the search Box on the page by it's HTML name property
    WebElement searchBox = driver.findElement(By.name("q"));
    // Enter keys in the search Box
    searchBox.sendKeys("Android Rocks!");
    // Hit enter
    searchBox.submit();
    // Ensure the title contains "Google"
    assertTrue(driver.getTitle().contains("Google"));
    // Ensure that there is at least one link with the keyword "Android"
    assertTrue(driver.findElements(By.partialLinkText("Android")).size() > 1);
}
原文链接:https://www.f2er.com/html/227365.html

猜你在找的HTML相关文章