qtp怎么写脚本

1. QTP手写脚本的步骤是怎样的呢 录制和手写可以配合使用我一般是先录制一个简单的操作,比如登录,然后打开要测试的页面,结束录制回放检测有没有错误,没有错误就开始手工写脚本增加操作步骤,如果有错误就调试脚本解决问题不是每个脚本都需要用到对象库,有时适当使用描述性编程更有效率,这时是不需要使用对象库的比如这是应用对象库的脚本 Browser(“测试页面”).Page(“测试页面").WebEdit("测试按钮").Click这三个对象都会在对象库中找到描述性编程的脚本Browser(“测试页面”).Page(“测试页面").WebEdit("innertext:=测试按钮").ClickWebEdit对象没在对象库中 。
2. QTP手写脚本的步骤是怎样的呢 录制和手写可以配合使用
我一般是先录制一个简单的操作,比如登录,然后打开要测试的页面,结束录制
回放检测有没有错误,
没有错误就开始手工写脚本增加操作步骤,如果有错误就调试脚本解决问题
不是每个脚本都需要用到对象库,有时适当使用描述性编程更有效率,这时是不需要使用对象库的
比如
这是应用对象库的脚本 Browser(“测试页面”).Page(“测试页面").WebEdit("测试按钮").Click
这三个对象都会在对象库中找到
描述性编程的脚本
Browser(“测试页面”).Page(“测试页面").WebEdit("innertext:=测试按钮").Click
WebEdit对象没在对象库中
3. QTP的2种脚本调用方法是什么 我不知道你调用脚本是什么概念?在QTP中调用外部脚本?还是启动QTP脚本? 调用外部脚本,你可以采取VBS的程序去调用外部程序,或者你可以写COM接口,然后再QTP的中调用! 启动QTP脚本,你可以采取QTP的COM接口通过程序来调用 (3atesing有大量视频专门介绍QTP的各类实用模式的) QTP的COM调用可参考: Set qtApp = CreateObject("QuickTest.Application") ' Create the Application object qtApp.Launch ' Launch QuickTest qtApp.Visible = True ' Set QuickTest to be visible ' Open a test and get the "Login" action's object repositories collection qtApp.Open "C:\Tests\Test1", False, False ' Open a test Set qtRepositories = qtApp.Test.Actions("Login").ObjectRepositories ' Get the object repositories collection object of the "Login" action ' Add MainApp.tsr if it's not already in the collection If qtRepositories.Find("C:\MainApp.tsr") = -1 Then ' If the repository cannot be found in the collection qtRepositories.Add "C:\MainApp.tsr", 1 ' Add the repository to the collection End If ' If InnerWnd.tsr is moved down the list - place it back at position 1 If qtRepositories.Count > 1 And qtRepositories.Item(2) = "C:\InnerWnd.tsr" Then ' If there's more than one object repository and InnerWnd.tsr is in position 2 qtRepositories.MoveToPos 1, 2 ' Switch between the first two object repositories End If ' If Debug.tsr is in the collection - remove it lngPosition = qtRepositories.Find("C:\Debug.tsr") ' Try finding the Debug.tsr object repository If lngPosition <> -1 Then ' If the object repository was found in the collection qtRepositories.Remove lngPosition ' Remove it End If ' Set the new object repository configuration as the default for all new actions qtRepositories.SetAsDefault ' Set object repositories associated with the "Login" action as the default for all new actions 'Save the test and close QuickTest qtApp.Test.Save ' Save the test qtApp.Quit ' Quit QuickTest Set qtRepositories = Nothing ' Release the action's shared repositories collection Set qtApp = Nothing ' Release the Application object 。
【qtp怎么写脚本】

qtp怎么写脚本

文章插图