|
第1题:
请简单描述如下脚本实现的功能:
for(i=1;i<10;i++)
{
# Browser Main Window
win_activate ("Browser Main Window");
# mainFrame
set_window("mainFrame",173);
web_image_click("I_add", 29, 9);
web_sync(14);
edit_set("txt_name","陈"i);
edit_set("txt_company","huawei");
edit_set("txt_phone","34322332");
edit_set("txt_mobile","13988888888");
set_window("mainFrame",35);
edit_set("txt_email","RYTRYY@163.COM");
web_image_click("I_save", 26, 9);
# Microsoft Internet Explorer
set_window ("Microsoft Internet Explorer", 1);
button_press ("确定");
}
第2题:
有一个学校考分查询系统,只要输入考生的学号,就能查询到该考生的考试科目的相关信息。(该学校每年大约有3万在校学生)其数据库中的考分表单存储大致如下所示:
考生学号 考试年度 科目1 科目2 ......
20045678976 2004下半年期末 75 80 ......
......
请规划一个性能测试方案,简单描述如何进行该系统的性能测试,以便进行相关的性能测试,提供相关的数据,让项目组做出相应的决策。
[ 本帖最后由 yoyo2463 于 2008-3-28 18:05 编辑 ] |
|