Answer Posted / pratap
How to get data from listbox in qtp, I have 2 columns names
in browser, column one can have Emp names and column two
can have salary ahd each employee can have listbox in column
two,
We want to featch emp name from col one and corsponding list
box value in column 2.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Without using gui map editor we can recognize the application in winrunner ?
What are the ways you can synchronize?
For QTP Test Engineer, What is his contribution to the Project? Means, As as automation test engineer what is his role in the current project?
How to record application running on the Virtual machine?
For which type of project the iterative model is suitable?
How can you identify the browser and its information using the qtp script?
Explain the concept of object repository and how quicktest professional recognises objects?
what is the difference between the modular framework and datadriven frame work
How many tabs are available to view your test in a test pane and what are they?
How to create scenario selector
How will you declare a variable in qtp?
How can I open a EXCEL file from QTP Resultviewer with reporter.ReportEvent function call. Example: Test files for details click "here". And clicking "Here" in the resultviewer will open a local EXCEL FILE.
How QTP identify the system time that's changes every seconds?
Can we run test with out adding object in object repository? How it is possible?
when I try to run below script in QTP "totalPages" value is 2. But i am getting error message (Type mismatch: 'totalPages' Line (): "For i=1 to totalPages".) totalPages=Browser("Name:=User").Page("Title:=User").WebElem ent("innertext:=of.*").GetROProperty("InnerText") msgbox totalPages For i=1 to totalPages rnum=Browser("Name:=User").Page("Title:=User").WebTa ble("column names:=User Name;ID;Last Name;First Name").GetRowWithCellText("store4") If rnum>0 Then r=rnum Exit for End If Browser("Name:=User").Page("Title:=User").WebElement ("html tag:=A","x:=471").Click MsgBox "Exit" Next