webcrawler 网页爬虫
想实现一个简单的网页爬虫, 利用selenium(htmlunit), 可以解析javascript. (本以 […]...
webdriver 模拟浏览器行为
rich web的测试需要模拟用户的交互较多, 所以只用http协议简单的来实现web的行为并不能很好对GUI […]...
Bad version number in .class file
当编译java程序时,报Bad version number in .class file错误. 当你使用ja […]...
junit3 对比 junit4
Junit3 和 junit4 到底有什么区别呢? 我们到底该使用junit3 还是 junit4 !...
java获取对象的私有方法或成员属性并调用
1。获取私有成员 public class PrivateObject { private String pr […]...
junit 输出html格式的测试报告
junit 输出html格式的测试报告 有些人会碰到这些问题.可能是ant或者java的bug,...
string, stringbuffer,stringbuilder 区别
主要的区别: String 不可变的, 如果你想改变string的值, 则会创建一个新的object, 而 S […]...
最简单的java http client api
你还在使用apache http client, 倒也没什么. 但你肯定也很纠结, 功能虽太强大,但使用起来并 […]...
randoop开源自动生成单元测试用例工具
randoop是一个可以自动生成单元测试用例的开源工具. 自动生成的case是按照junit的格式.并且包含了 […]...
java中&和&&的区别
For integer arguments, the single ampersand (“&am […]...