Can we continue functionality testing without framework?
Answers were Sorted based on User's Feedback
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 |
Answer / p
We Can!
By directly Hard coding the values into the script.
This can also be called as Linear Framework. But, I feel,
this may not be a frame work.
---
Protect Hindu Culture from Pseudo-Securalists, Other
Religious Fundamentalists.
Support BJP, RSS.
--
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satyanarayana
Yes we can continue testing process without a frame work.
But it is not a recommended way .Because the main aim of
frame works is to execute the tests in an optimised way.
| Is This Answer Correct ? | 0 Yes | 0 No |
I want to create Excel object on another machine which is in network i written the code "Set se=createobject ("Excel.Application","\\ankur")"here \\ankur is the name of that machine but i m getting the error of permission denied create object can anybody help me
how can you write a script without using GUI in QTP?
Error handling
Name the different types of recording modes?
What are objects? how do you select the unknow object?
how to read log file using QTP??
what are the Common Problems in S/w development process
How can we use the "CreateObject ("Scripting.FileSystemObject")" in QTP and what is the definition and purpose of it?
What is the difference between wait and synchronization point?
how to lunch the application in the qtp tool ?
How to handle Recovery scenario in QTP. give detailed explanation about recovery scenario.
Hi Guys, I want to place all of my values which i am getting it from a loop in to a global shee. For that i had written the script like this For i = 1 to ECOs-1 ECO = List(i).GetROProperty("innertext") DataTable.AddSheet("ECOList") DataTable.GetSheet("ECOList").AddParameter "ECOList",ECO AbortECO = DataTable.GetSheet("ECOList").GetParameter ("ECOList").Value msgbox AbortECO DataTable.GetSheet("ECOList").SetNextRow Using the above script, whenever the loop iterates it is creating new column "ECOLIST" in the sheet called "ECOLIST". It means, the values are displaying in the column wise even though i added the script " DataTable.GetSheet("ECOList").SetNextRow" . The cursor is not moving to the next line. Anybody help me out how to pass the values from script to the excel(Global/Local) sheet. Pls let me know @ nbabu11@gmail.com if you are not clear about the question.