console.writeline("moving form"); setformpropertyvalue("location", new system.drawing.point(200,200)); setformpropertyvalue("location", new system.drawing.point(500,500));
console.writeline("resizing form"); setformpropertyvalue("size", new system.drawing.size(600,600)); setformpropertyvalue("size", new system.drawing.size(300,320));
我使用 thread.sleep 方法来暂停测试自动化以确保待测试应用程序已启动并运行。创建表示应用程序窗体类型的 type 对象之后,我使用 type.getfield 方法检索 form 对象中指定字段(控件)的信息。然后调用 fieldinfo.gettype 方法获得表示想要操作的控件的 type 对象。一旦拥有控件对象,我就可以像操作 form 对象那样操作该控件对象,即获取控件的 propertyinfo,然后调用 setvalue 方法。对于 setformpropertyvalue,需要确保所有的属性更改都是在正确的线程中进行的。
请注意,测试自动化并不直接模拟极低水平的用户操作。例如,自动化并不模拟对 textbox1 控件的各次击键,而是直接设置 text 属性。同样,自动化不模拟对 combobox1 控件的点击,而是设置 selecteditem 属性。这是我的测试自动化系统的一个设计缺陷。要采取那种方式测试,您可以按照 john robbins 在前面提到的文章中的建议来做。
模拟用户在文本框和 combobox 控件中键入颜色的操作之后,自动化会模拟点击按钮控件:
console.writeline("clicking button1"); invokemethod("button1_click", new object[]{null, eventargs.empty} );
console.writeline("/nclicking menu file->exit in 5 seconds . . . "); thread.sleep(3500); invokemethod("menuitem4_click", new object[] {null, new eventargs()} );
james mccaffrey 就职于 volt information sciences, inc.,负责对在 microsoft 工作的软件工程师进行技术培训。他参与开发多种 microsoft 产品,包括 internet explorer 和 msn search。您可以通过 [email protected] 或 [email protected] 与 james 取得联系。