mowandao1985 发表于 2010-2-26 16:50:51

录制Radio按钮时的问题

在我录制脚本的时候,点击【...】按钮会出现一个选择列表,我随机点击一个按钮选择,继续录制脚本,
但是,当我回放的时候,它不能自动回放我的选择操作,后来我就用Spy看了一下点击Radio按钮的一些属性,
如下图所示:希望大家能帮帮忙看下,到底该怎么解决?

fanliukund 发表于 2010-2-26 17:51:50

'The following example uses the Select method to check if a radio group
'has the value of "Two", and, if not, selects the "Two" radio button.
CurrentValue = Browser("All types of radio buttons").Page("All types of radio buttons").WebRadioGroup("MYRADIO").GetTOProperty("value")
If CurrentValue <> "Two" Then
Browser("All types of radio buttons").Page("All types of radio buttons").WebRadioGroup("MYRADIO").Select "Two"
End If

fanliukund 发表于 2010-2-26 17:52:08

Browser("Mercury Tours").Page("Find Flights").WebRadioGroup("seat pref").Select "Window"

mowandao1985 发表于 2010-3-2 10:06:46

楼上的方法我都试了不行,我忘了补充了:你选中按钮后点击,它就会自动跳转页面,部分实现代码如下:
<INPUTtype=radio>

mowandao1985 发表于 2010-3-2 10:08:31

<INPUTtype=radio>

mowandao1985 发表于 2010-3-2 10:14:34

因为中间部分代码没能贴出来,我就把它放到文本里去了。

mowandao1985 发表于 2010-3-12 14:12:35

问题已经解决!
我被QTP自动生成的脚本代码给忽悠了,呵呵!
Browser("MYRO Electronic Control").Page("Shortcut Search - MYRO").WebRadioGroup("PART_select").Select "#0"
由于这个页面时有JS控制的,只要在页面点击自己所选择的WebRadion就可以获得当前所选的值。
所以这里应该是以个Click事件,把脚本代码改成如下就可以了。
Browser("MYRO Electronic Control").Page("Shortcut Search - MYRO").WebRadioGroup("PART_select").Click
谢谢大家的帮忙!
页: [1]
查看完整版本: 录制Radio按钮时的问题