I need Major Help with a Script I recorded in QTP 9.5. I am
recording scripts for a Web-based application(s) I have all
the URLs for each application in Excel spreadhsheet so that
QTP can pull that particular application from the
spreadsheet and run it. The problem is QTP isn't
recognizing one particular URL so when I hit run in QTP to
run this script it opens the internet Explorer but isn't
open the URL I have in the Excel spreadsheet. I've retyped
the URL and still QTP won't open this Particular one for
some reason. The site its self is working fine but for
whatever reason QTP won't open it. How do I resolve this? I
have a deadline of next Friday the 7th to complete this
task so please help me in any way you can. Thanks in advance
what is the advantages and disadvantages of using functions instead of re usable actions
Give answer with example what is orthogonal array testing technique?
Explain the terms test and business component?
What’s the basic concept of QTP?
how to merge object repositories?
4. How u will open the build automatically in QTP except using Systemutil.run command
how to write this script using descriptive programming? the script below is the script generated by QTP plz write the script using descriptive programming? plzzzzzzzz do answer thanku Browser("Welcome: Mercury Tours").Page("orkut - login").WebEdit("Email").Set "test123" Browser("Welcome: Mercury Tours").Page("orkut - login").WebEdit ("Passwd").SetSecure "475259b450e3d212bef4a5f5ce9d32ebcbf4" Browser("Welcome: Mercury Tours").Page("orkut - login").WebButton("Sign in").Click Browser("Welcome: Mercury Tours").Page("orkut - home").Link ("Logout").Click Browser("Welcome: Mercury Tours").Page("orkut - login").Sync Browser("Welcome: Mercury Tours").Close
How to get the format of a webedit class in qtp. How can i know that particular webedit accept what type of format like "mm/dd/yyyy" or "$" or Alphanumeric
Differentiate the two Object Repository Types of QTP.
How we can add objects to the object repository during the running?is it possible or not?explain
How we can call the scripit from another scripit in QTP?,Not a call Action
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