TA的每日心情 | 衰 2018-2-3 16:57 |
---|
签到天数: 78 天 连续签到: 1 天 [LV.6]测试旅长
|
4#
楼主 |
发表于 2016-11-23 14:00:32
|
只看该作者
这是我写的,执行到高级搜索那就报错了
public static void main(String[] args) {
// TODO Auto-generated method stub
DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*firefox","http://www.baidu.com");
selenium.start();
selenium.open("http://www.baidu.com");
selenium.click("name=tj_trtieba");
// selenium.waitForPageToLoad("3000");
selenium.click("class=senior-search-link");
// selenium.waitForPageToLoad("3000");
selenium.select("name=sm", "label=按时间顺序");
selenium.select("name=rn", "value=20");
} |
|