下拉列表
假如页面中有如下下拉列表
<select name = "selectme" > <option name="1">O1<option name="2">O2</select>
可以通过如下方式选中该下拉列表中的选项
//(finds the option in the select list with name 1)
ie.selectList(name, "selectme").option(name,"1").select();
//(finds the second option in the list)
ie.selectList(name, "selectme").option(index,1).select();
ie.textField(name, "username").value();
得到子浏览器
当当前浏览器打开一个新的浏览器窗口时,可以使用如下方法得到新的窗口
IE ie = new IE().start("www.mysite.com");
//lets click a link that causes a new window to popup
ie.link(name, "mylink").click();
//now lets get a handle on the child browser;
IE new_ie = ie.childBrowser();作者: dengxiaof520 时间: 2011-5-13 17:36
您好,想问下版主,您现在还在用Watij么?期待您的回复.作者: etheltim 时间: 2011-11-23 12:39 回复 1#msnshow