HI, Anybody can explain Automation Test Framework...and wht
do we do before start of Automation.....
Answers were Sorted based on User's Feedback
Answer / narendra
Automation Test Framework describes the approach we are
following to automate our application testing
Mainly there are 3 standard framework approaches
1.Date Driven Framework
2.Keyword Driven/Table Driven framework
3.Hybrid framework(combination of above 2 frameworks)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / krishnateja muppalla
If they ask about Framework, then you will have to explain about:
Driver Script,
Shared Repository & Local Repository,
Global Sheets and Local Sheets,
Library Functions,
Output folder/sheets etc
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ramesh
Actually Framework is a folder set such as scripts,test
cases,test data,object repository.Generally automation
testing framework is designed to create and maintain the
overall tests in a easy manner.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / softwaretester4u
Hi man framework means structural format of test scripts
creation (means folder structer) (But this is not
defination)
if u want mre subsirbe yahoo group testingguru and post ur
question
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pradeep
A test automation framework is a set of assumptions,
concepts, and practices that provide support for automated
software testing.
Source - to read more:
http://www.ibm.com/developerworks/rational/library/591.html
| Is This Answer Correct ? | 0 Yes | 0 No |
To count the no of links present in the yahoo home page i have written the script like this Set fileSysObject=createobject("Scripting.FileSystemObject") Set linksFileName=fileSysObject.opentextfile ("D:\samplelinkfile.txt",2,true) Set linkDescObj=description.Create linkDescObj("micclass").value="Link" Set noOfLinks=browser("yahoo").Page("Yahoo! India").ChildObjects(linkDescObj) For i=0 to noOfLinks.count-1 linkName=noOfLinks(i).getROProperty("name") linksFileName.writeline(linkName) Next linksFileName.close Set fileSysObject=nothing While running the script it showing error that object "yahoo"isnot found in the object repository. Is there any setting before running the script? if yes what is the steps for it.Im using QTP9.0
the presentation layer of my application is built using VB 6.0 and a series of C++ dlls and components. We do not use Java, VB.Net, C## or any other component that can be decompiled. We are automating the application using HP Quick Test Professional. It is not reconginizing the combo boxes, tabs etc.... Could you please suggest, whether QTP supports C++ dlls and components or not...if yes, could you please guide me, how to overcome this situation. Can we install any special add-ins for this C++? .When we are performing the recording/execution, the application becomes very slow. Your quick response will be highly solicited in this regard.
How to find the length of the string in qtp?
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...?
hello all i need some good sites or blogs which give info abt vb script with examples n real time scenarios.just like tutorials as i m new to qtp n vbscripting. its urgenttt
When should I use smart identification?
What is the difference between Datadriven and Parameterization?
When I click on a link in web page.Link should open in new window.can anyone please let me know the script for this ---Koti
Why do you create a text checkpoint on a Web application? What is the purpose of the Close method?
HO DO U CALL A ACTION?
what is the hierachy of Descreptive programming?
1>why parameterization is necessary in qtp? 2>if we give constant value then what problem?