Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Code check- Random number
#2
Solved: 10 Years, 9 Months, 4 Weeks ago
Hi Swetha,
Yes you can pass the variable as a range for RandomNumber

you have used 'GetTOProperty'. there is no any method as such in QTP a similar method is GetTOProperties return properties and values of an object used to identify the object. you should use GetROProperty to retreive the value of a particular property.

when you use 'select' for a weblist, if you are using the item in the list you can put the item derectly to select but if you use index then you should use "#1","#2" etc.

I have tried to modify your code
Code:
For i = 1 to 3
Mrkt = Browser("TalonPro Solutions").Page("TalonPro Solutions").WebList("Market").GetROProperty("items count")
'trying to get number of items in the Market list.
wait(5)
Browser("TalonPro Solutions").Page("TalonPro Solutions").WebList("Market").Select "#" & RandomNumber(1, Mrkt )
'Selecting a random number for the list Market in the range 1 to Mrkt (variable defined in the earlier set)
wait(5)
loctn = Browser("TalonPro Solutions").Page("TalonPro Solutions").WebList("Location").GetROProperty("items count")
'trying to get number of items in the Location list
wait(7)
Browser("TalonPro Solutions").Page("TalonPro Solutions").WebList("Location").Select "#" & RandomNumber(1,loctn)
'Selecting a random number for the list Market in the range 1 to loctn (variable defined in the earlier set)
Next

let me know if this helps

Reply


Messages In This Thread
Code check- Random number - by swetha.b - 12-17-2009, 12:59 PM
RE: Code check- Random number - by Saket - 12-17-2009, 02:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Create a random number starting with an alphabet QTPmate 4 3,871 07-31-2014, 09:29 AM
Last Post: QTPmate
  Random Values from Drop-Down profqa 5 5,736 12-06-2013, 09:01 AM
Last Post: basanth27
  Creating Random String SomeIntern 0 4,790 08-21-2013, 09:10 PM
Last Post: SomeIntern
  Can some one check my code and tell me whats wrong in it. zakshah.12 3 3,545 03-06-2013, 03:26 AM
Last Post: newqtp
  Random Number generator and verification problem jinnah 4 10,065 09-28-2012, 04:03 AM
Last Post: jinnah

Forum Jump:


Users browsing this thread: 1 Guest(s)