How do we create and run the scripts with out using O.R. ?
Answers were Sorted based on User's Feedback
Answer / rav
Using descriptive programming, you can define all the
objects in the script itself..you dont necessarily need to
use OR for that...
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / king
dialog("regexpwndtitle:=login").winedit("attached
text:=Agent Name:").set "raju"
dialog("regexpwndtitle:=login").winedit("attached
text:=Password:").set "mercury"
dialog("regexpwndtitle:=login").winbutton
("regexpwndtitle:=ok").click
window("regexpwndtitle:=Flight Reservation").ActiveX
("acx_name:=MaskEdBox").Type "080808"
window("regexpwndtitle:=Flight Reservation").wincombobox
("attached text:=fly from:").Select "Denver"
window("regexpwndtitle:=Flight Reservation").wincombobox
("attached text:=fly to:").Select "London"
window("regexpwndtitle:=Flight Reservation").winbutton
("regexpwndtitle:=flight").click
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / usha
Thank you for the answer. Can u please give me an example
so that I get a clear Idea ?
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rani
We can create and run the scripts without Object Repository,
Object Repository is nothing but collection of properties
and corresponding values. Each collection represents an
object.
Descriptive programming is a way of specifying properties
and values without using the OR interface.
Throwing the properties and values straight into the
command.
Ex:
Systemutil.Run"www.mail.yahoo.com"
Set a=Browser("name:=Yahoo!.*").page("title:=Yahoo!.*")
a.WebEdit("name:=login").Set "yourusername"
a.WebEdit("name:=passwd").Set "xxxx"
a.Webbutton("name:=Sign in").Click
You can try this code.It should work if you provide valid
username and password.
Let me know still if you are not clear on this.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / viswajith
Very nice Answer Rani.
Can u tell me that what is the recovery scenario?
Explain it in understandable format.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is use of the object repository?
diff between global variables and environment variables in qtp?
can any one tell me How exactly data drivent testing is done in.explain with any example and the exact steps to fallow?
Without using gui map editor we can recognize the application in winrunner ?
How to make "TEST Batches" in manual testing . How it is possible plz explin in detail?
Please explain me in detail! How to handle runtime errors in QTP useing recovery senario or with out scenario
I got an error "The"flightres" Dialog was not found in the Object Repository. Check the OR to confirm that the object exists or to find the correct name for the object." while running the following script Set flightres=description.Create() flightres("text").value="Login" flightres("Class Name").value="Dialog" Set agent = description.Create() agent("nativeclass").value="WinEdit" agent("attachedtext").value="Agent Name:" Set pwd = description.Create() pwd("nativeclass").value="WinEdit" pwd("attachedtext").value="Password" Set button = description.Create() button("nativeclass").value="WinButton" button("Text").value="OK" Dialog("flightres").WinEdit("agent").Set "test" Dialog("flightres").WinEdit("pwd").Set "mercury" Dialog("flightres").WinButton("button").Click Please let me know if i made any mistake in the above script...?
when i was doing the Flight reservation with QTP calculating the tickets i got Type mismatch: '[string: ""]' in "If cdbl(tot)=cdbl(p)*t Then" error. where I am doing the mistake Could you please tell me.
How to retrive XML file data in QTP ? using Script(Chandana)
What is test object model in QTP?
Can any body please tell me the steps of keyword driven framework of QTP.
What is quick test pro?