51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2005|回复: 2
打印 上一主题 下一主题

[资料] QTP11.5实战系列基础篇(二)

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2017-3-8 14:10:54 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

继续连载...

首先查看帮助文档,查看set方法:

Description
Sets the value ofthe edit box. //给文本框赋值
Syntax
object.Set Text
示例:
Sub Set_Example()
'The followingexample uses the Set method to set the file name
'document.txt inthe File name: edit box.
Dialog("Open").WinEdit("File&name:").Set "document.txt"
End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"






End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End SubSub Set_Example()
'The following example uses the Set method toset the file name
'document.txt in the File name: edit box.

Dialog("Open").WinEdit("File &name:").Set "document.txt"

End
编写增加订单脚本:
Dialog("Login").WinEdit("Agent Name:").Set "test"
Dialog("Login").WinEdit("Password:").Set "Mercury"
Dialog("Login").WinButton("OK").Click
wait(2)
Window("FlightReservation").WinObject("Date of Flight:").Type "101116"
Window("FlightReservation").WinComboBox("Fly From:").Select 1
Window("FlightReservation").WinComboBox("Fly To:").Select 2
wait(2)
Window("FlightReservation").WinButton("FLIGHT").Click
Window("FlightReservation").Dialog("Flights Table").WinList("From").Select 1
Window("FlightReservation").Dialog("FlightsTable").WinButton("OK").Click
wait(1)
Window("FlightReservation").WinEdit("Name:").Set "tian"
Window("FlightReservation").WinButton("Insert Order").Click

注:脚本详解
点击”ok”之后,跳转到订单界面,页面出现需要时间,脚本中加入wait方法,wait之后的脚本便会延迟执行;Select是选取值,选第一个值,则用0,选二个,则用1,以此类推;直接点击按钮用click;为文本框赋值用set;Type方法是按照字符逐个输入,而set是一次性赋值。
执行完之后”OrderNo”产生


(3)检查FlyFrom与FlyTo下拉列表值。
功能分析:以FlyFrom为例,通过帮助文档,我们得知用GetItemsCount方法计算下拉框元素总个数,通过For循环获取其中某个值,然后与预期值进行比对。
脚本如下:
flyFrom=Array("Denver","Frankfurt","London","LosAngeles","Paris","Portland","SanFrancisco","Seattle","Sydney","Zurich")

For i =0 to   Window("Flight Reservation").WinComboBox("Fly From:").GetItemsCount-1
    If (Window("Flight Reservation").WinComboBox("Fly From:").GetItem(i)=flyFrom(i)) Then
        msgbox i &" right"
    Else
       msgbox i & "wrong"
    End If
Next
脚本分析:
把预期值存放于数组中,用GetItemsCount方法获取总数,用GetItem获取FlyFrom列表实际值,由于是从第一个值对应Item是0,故For语句总数要减1,数组Item也是从零开始,取”Denver”用flyFrom(0),取数组长度可用ubound方法,如:ubound(flyFrom),msgbox 是以弹出框的形式输出消息,vbs连接字符串需要用&符号

(4) 从工具栏新增订单
以 File->Open Order为例
首先需要把menu对象增加到对象库中,有以下两种方法可打开Open Order…
方法一: Window("FlightReservation").WinMenu("Menu").Select "File;OpenOrder..."

方法二:Window("FlightReservation").WinMenu("Menu").Select "<Item1>;<Item 2>"
(5)对象库基本操作
对象库就是储存QTP各Object以及其识别属性,从而在被测应用程序中找到对应的唯一的对象
在进行写脚本之前,需要先增加对象库Resources->Object Repository,用鼠标点击Help下方”+”鼠标会变成”手”状,然后点击被测程序的UI元素,如点击Fly From,便会加入到对象库中.
合并对象库:
如A同学在对象框中增加了FlyFrom,B同学在对象框中增加了FlyTo,我们可以把A,B同学的对象框合并成一个新的对象库包含FlyFrom与FlyTo
打开:Object->Object RepositoryManager->Tools->Object Repository Merge Tool


选择文件并”ok”,通过file-save便可得到合并后的对象库




本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

x

评分

参与人数 1测试积点 +10 收起 理由
lsekfe + 10 支持分享

查看全部评分

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

  • TA的每日心情

    2024-7-8 09:00
  • 签到天数: 943 天

    连续签到: 1 天

    [LV.10]测试总司令

    2#
    发表于 2017-3-8 14:35:36 | 只看该作者
    嘿嘿 加油 多写点 到时候 我学QTP就看你的分享了  写详细一些
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-8 23:04 , Processed in 0.062784 second(s), 25 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表