Can we continue functionality testing without framework?
Answer Posted / baba fakruddin
Framework is nothing but framing our work in certain
way/path or limits, This will make our work easy and
understandable to anybody and easily reference in future..
etc.,
Functionality Testing means just testing the functionality
of certain feature in an application.
This functionality testing is one small part in Framework.
we can follow our own style to test an application, that
will become your own framework.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
In an interview, what r the general questions asked in QTP? pls give me anwser to this question?
Give me some real time point of way where exactly we can conduct audits?
Explain process of smart Identification in QTP?
If I change the property value at runtime is it effect is object repository?
Explain QTP using different development techniques ?
I am a newbie to QTP / Automation testing. I want to develop a script that creates a data file automatically with proper headings using VBScript in QTP.
What is the significance of “action 0” in qtp?
How does qtp recognize objects in aut?
How would you directly trigger javascript in a test?
How to run a test using quicktest professional?
Explain the qtp test phases.
What kinds of security (firewalls, encryptions, passwords, etc.) will be required and what is it expected to do? How can it be tested?
What are the main differences of qtp and win runner?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing