1) 100 test boxes there in application. how to click 100
test boxes using vb script? 2) 100 objects there in web
page,how we will store that 100 objects repostries?
Answers were Sorted based on User's Feedback
Answer / uday
The expectated answer for these kind of questions is using
descriptive programming.
If you create single webedit object, then u can use it for
100 webedit objects.
set editObj=description.create
editObj("micclass").value="webedit"
set editChildObjCol=b().p().childobjects(editObj)
for i=1 to 100
editChildObjCol(i).click
next
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / taj
HOW CAN U CLICK A EDITBOX.?
ANS HERE IS:
CNT=EDITCHILDOBJ.COUNT
FOR I=0 TO CNT-1
EDITCHILDOBJ(i).set "xyz"
next
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mohammed zakir
CNT=EDITCHILDOBJ.COUNT
FOR I=0 TO CNT-1
EDITCHILDOBJ(i).set "xyz"
next
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the key points to create a framework in QTP for oracle forms?
Can we do Load Testing with QTP?
How to run an integrated test scenario using Multiple Actions? How to use the QTP Step Generator?
What information do the columns in the Keyword View show for each step?
Please explain me frameworks & how to generate the scripts in framework
Explain me in deatail about DATADRIVEN framework including scripts ?(realtimes plz)(Chandana)
Write test cases for copy and past password in password field ?
How can we test an XML using QTP? I have been to an interview, where they have given me an XML which had 15 values and they have given those values on a separate page. They asked me to write a QTP script to check the XML is having those particular 15 values.
What is Automation frame work.How we will prepare in real time.
write script for how to add function library in QTP
I want to open a Google page without recording a test and i do not want to use system.Util.run command as well how do i do this?
Did you face the problem, changing the properties of an object in Run Time?