[Java][测试] Java Web测试工具语法总结
总结
我整理了使用在http://java-source.net/open-source/web-testing-tools中提到的测试工具进行测试的方法。
HtmlUnit是一个Java的自动化测试框架,它可以模拟浏览器行为并与网页进行交互。
感觉不错
@Test
public void homePage() throws Exception {
final WebClient webClient = new WebClient();
final HtmlPage page = webClient.getPage("http://htmlunit.sourceforge.net");
Assert.assertEquals("HtmlUnit - Welcome to HtmlUnit", page.getTitleText());
final String pageAsXml = page.asXml();
Assert.assertTrue(pageAsXml.contains("<body class=\"composite\">"));
final String pageAsText = page.asText();
Assert.assertTrue(pageAsText.contains("Support for the HTTP and HTTPS protocols"));
webClient.closeAllWindows();
}
马克斯Q
由于它是代理类型的,所以略去不提。
jWebUnit 是一个用于构建 Web 应用程序自动化测试的 Java 框架。
很有DSL的感觉,很不错。
import org.junit.*;
import static net.sourceforge.jwebunit.junit.JWebUnit.*;
public class ExampleWebTestCase {
@Before
public void prepare() {
setBaseUrl("http://localhost:8080/test");
}
@Test
public void testLogin() {
beginAt("/home");
clickLink("login");
assertTitleEquals("Login");
setTextField("username", "test");
setTextField("password", "test123");
submit();
assertTitleEquals("Welcome, test!");
}
}
HttpUnit
感觉不错。
WebConversation wc = new WebConversation();
WebResponse resp = wc.getResponse( "http://www.httpunit.org/doc/cookbook.html" ); // read this page
WebLink link = resp.getLinkWith( "response" ); // find the link
link.click(); // follow it
WebResponse jdoc = wc.getCurrentPage(); // retrieve the referenced page
Canoo WebTest
独轮车网页测试
XML是什么啊…听起来有点困难。
<project default="test">
<target name="test">
<webtest
name="check that WebTest is Google's top 'WebTest' result">
<invoke url="http://www.google.com/ncr"
description="Go to Google (in English)"/>
<verifyTitle text="Google" />
<setInputField name="q" value="WebTest" />
<clickButton label="I'm Feeling Lucky" />
<verifyTitle text="Canoo WebTest" />
</webtest>
</target>
</project>
JMeter
这是一个负载测试。
载入模拟
进行了负载测试。
拉克塔
链接失效。
故事测试MQ
使用Selenium。
It can be paraphrased in Chinese as “瘦狗” .
链接失效。
准许印刷
链接失效。
苗条的
链接失效。
硒
WebDriver driver = new InternetExplorerDriver();
driver.get("http://www.google.com");
driver.findElement(By.name("q")).sendKeys("Selenium");
driver.
Watij (哇提)
好像不错。
WebSpec spec = new WebSpec().mozilla();
spec.open("http://www.google.com");
spec.find.input().with.name("q").set.value("Watij");
spec.find.input().with.type("button").with.value("Google Search").click();
//check results
spec.find.a().with.href("http://watij.com/").shouldExist();