hai,i want to select an option from the right click pop up
menu.but the qtp is not recognizing the right click pop up
menu as a seperate object.can any one tell me the solution.
Answers were Sorted based on User's Feedback
Answer / rajdeep
Use Low Level REcording Method buddy for those particular
steps.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / deepak
Hey Laxmi,
If you use Low Level Recording then the script would
automatically generate right?
You can use the same script in your automation without any
problem..
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / chivukula
we have another options like Keyboard shortcuts,Send keys or mercurry device play option.we press the right mouse and give the key stroke which option you want and give enter keystroke
| Is This Answer Correct ? | 1 Yes | 0 No |
What is descriptive.create () in QTP?
Write a function which returns the addition of two numbers. give the value of the numbers outside the function.
I have the script like this: Browser("Login").Page ("Application").Frame("ScopeFrame").Link("DC3701737 (Active)").Click in which the value "DC3701737" will get changed and i have to use the same value in so many places. I got the value "DC3701737" in to a variable(Say x). Now if i want to pass the variable in to link object .. how? Browser("Login").Page("Application").Frame ("ScopeFrame").Link(x).Click Is it possible to pass any variable into a link object .. so, that the application will select that link automatically? If ur not able to understand, pls let me know.
GET WHETHER THE GIVE NUMBER VALID OR NOT IN BETWEEN THE GIVEN RANGE?IN VB SCRIPT(QTP)
why qtp supports vbscript? and not for others just like cgi,phython,shell,perl,html and all..
How can we extract data like "Details","Result","Time" from the 'Run Error' result generated in QTP after run time errors are generated during a run & import the details etc...into excel sheet
How to carry out bit map check points in QTP
This is a question thats generally asked in every QTP interview. What were the problems that you faced during automation and how did you resolve them?
i m tryed to use qtp in a user registration form but at the "image enter"part it gives a error when i run the qtp bcz the image is changed every time so it gives a error when i use regukar expreesion fot this it still gives a error value bcoz it reads the image code bt nt reconige the image which i enter in the image verification text box.so hw can i automate qtp for this function.plz give me a answer
what are the different data driven types?
what r the main attributes of test automation?
I've some problem in Descriptive programming plz help me. I've written in a click event code in Functional library when I run this flight reservation program It is not run. How to I write multiple click event in functional library. My program is this. I have associate an action with functional library. Public Function ClickButton(byval ApplicationName, byval WindowName, byval ObjectName, byref Comments) If Dialog("text:=" &WindowName).WinButton("text:=" &ObjectName).Exist Then Dialog("text:=" &WindowName).Activate Dialog("text:=" &WindowName).WinButton("text:=" &ObjectName).Click Elseif Window("text:="&ApplicationName).WinButton("text:=" &ObjectName).Exist Then Window("text:=" &ApplicationName).Activate Window("text:=" &ApplicationName).WinButton("text:=" &ObjectName).Click End if End Function