|
RadioItems = Browser("Welcome: Mercury Tours").Page("Select a Flight: Mercury").WebRadioGroup("outFlight").GetROProperty("all items")
RadioContent = split(RadioItems,";")
i = randomnumber(0,ubound(RadioContent))
Browser("Welcome: Mercury Tours").Page("Select a Flight: Mercury").WebRadioGroup("outFlight").Select RadioContent(i)
如上代码所示,我选择了一个radiobutton,在后面我将用到这个radionbutton,请问我该如何保荐这个值呢?
我想进行把他保荐在参数里面,但是提示"未找到已命名参数".请高人指教如何对这个编写代码或者用datetable也行
Parameter("OFlight") = Browser("Welcome: Mercury Tours").Page("Select a Flight: Mercury").WebRadioGroup("outFlight").GetROProperty("value") |
|