我是靠谱客的博主 美丽过客,最近开发中收集的这篇文章主要介绍QTP中如何取文本框的值 两种方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. 第一种方法: 用GetROProperty("default value")   

首先获取对象到本地。

其次,在对象下写以下代码:

mytest =Browser("主页名称").Page("主页名称").Frame("ext-gen218").WebEdit("id").GetRoProperty("default value")
MsgBox (mytest)   ' 测试是否获取成功

’以下是把获取到的ID写到C盘下的1.txt文件中。
Const ForReading=1,ForWriting=2,ForAppending=8
Set fso = CreateObject("Scripting.FileSystemObject")
set openfile=fso.OpenTextFile("c:/1.txt",ForAppending,true)
openfile.WriteLine mytest
openfile.Close
Set fso=nothing  '清空资源

’为其在result里能看到ID是否成功获取,写以下一条代码
Reporter.ReportEvent micPass,"pass","The ID can be output successfully"


第二种方法: 用传递参数的方式。应用Output

 1) 在Active Screen 把ID对象加入到本地对象库中:right click>insert output value.   

        生成的语句:Browser("主页名称").Page("主页名称").Frame("ext-gen179").WebEdit("id").Output CheckPoint("id")

2)在所在action上定义输出参数: 在其所对应的action上(在testflow 窗口),right click>Action Properties>Parameters>在output paramenters 板块,定义两个输出参数: Name=aout; type=string.

      注意:如果这个action 是子action,那么其父action也要定义一个output参数: 

      那怎么把子action传给父action呢? 其方法是在子action>right click>action call Properties>在output paramenters 板块,定义三个输出参数: Name=aout; type=string; Store In=bout.. 此时父action再定义这个bout参数就行了。


3)接下来这步关键。把这个参数设置成全局应用。File>Settings>output paramenters 板块, 定义两个输出参数: Name=aout; type=string.


4) 应用output参数。

executefile "C:test.vbs"
ReadReocordToFile(Testargs("tSDout"))


5) test.vbs如下:

Function ReadReocordToFile(name)

Dim readstr
Dim fso, Testfile, testFolder, openfile, fso2
set fso = CreateObject("Scripting.FileSystemObject")
'创建fso对象
IF not fso.FolderExists("C:test") Then
   Set testFolder =fso.createFolder("C:test")
End IF


Set Testfile = fso.openTextFile("C:testtest.txt", 8, True, 0)
Testfile.WriteLine(name)
Testfile.Close
set fso2 = CreateObject("Scripting.FileSystemObject")
Set openfile=fso2.OpenTextFile("C:testtest.txt",1,True,0)
Do          Until openfile.AtEndOfStream
                str=openfile.ReadLine(name)
                 Msgbox a(str)                                       
Loop
openfile.Close
Set fso=Nothing
End Function


总结:第一种要简单得多,但如果是复杂应用就要用第二种好些。




最后

以上就是美丽过客为你收集整理的QTP中如何取文本框的值 两种方法的全部内容,希望文章能够帮你解决QTP中如何取文本框的值 两种方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部