|
本帖最后由 wolaizhinidexin 于 2011-2-25 15:31 编辑
如图:
点击某个链接,弹出这个层后,点击添加,添加完后,下面的代码就没有办法执行了,就停留在下面注释中的 ERROR: 位置,什么语句都不能执行,就连ie.Quit();也是执行不了的,只有当我手动点击“.net测试0”等链接后程序才会继续执行。这是为什么呢?请各位赐教。不知道原因也没关系,有好的解决办法,小生也在此感谢了。
//下面的代码是使用两个非托管类库:mshtml.dll和Interop.SHDocVw.dll来使用的。详细可以参考《。Net软件测试自动化之道》中的方法。
//.................................上面的代码略
//点击添加员工管理按钮
HTMLInputElement addEmployee = (HTMLInputElement)theDoc.getElementsByTagName("input").item(5, 5);
addEmployee.click();
documentComplete.WaitOne();
Thread.Sleep(1000);
//填写员工姓名
HTMLInputElement employeeName = (HTMLInputElement)theDoc.getElementById("employeeName");
employeeName.value = ".net测试" + bb;
//填写联系电话
HTMLInputElement telephone = (HTMLInputElement)theDoc.getElementById("telephone");
telephone.value = "13732991639";
//确定
HTMLInputElement confirmAdd = (HTMLInputElement)theDoc.getElementsByTagName("input").item(8, 8);
confirmAdd.click();
documentComplete.WaitOne();
Thread.Sleep(1000);
Console.WriteLine("\nClose IE");
Thread.Sleep(1000);
//ERROR:当程序执行到这里时,必须点击弹出层中的某个链接后才能执行下面的语句
//关闭
//关闭当前IE窗口
ie.Quit(); |
|