I have a tool for automation testing (eg:qtp).I have two
functionality(A & B) to test.A is tested once in a year. B
is tested everyday. At present i have the money and resource
availability to automate only one functionality.Which one
will u suggest and why?
Answer Posted / ram.polavarapu
we need to go for B why because we can write script in
notepad and save as .vbs file and add in schedule in
control panel everyday the process is going to
automated.....
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to disable the pop ups through QTP using a script
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
Thanks....But can u tell me how i use the QTP for GIS with one Example...
Difference between action & Reusable action?
What is difference between run time object and test object?
In application which areas to be automated and what kind of situation will be take? using QTP? Plz give me the clear answer
This is a question thats generally asked in every QTP interview. What were the problems that you faced during automation and how did you resolve them?
If there is a change in the object type eg: A button is changed as link, 1. How to edit that in the shared object repository. 2.What options are available to edit the object within shared object repository other than copy from loca; 3.What would be the effect of the change in Coded Scripts within QTP and Functions stored in .vbs file which are loaded and used in QTP
hi i am working with vbwindow on qtp.first i am openning qtp whenever open qtp my application not open that time generated error like "Runtime error 0" and fatal error:automation error how to solve this problem pls tell me
How you can replace string in qtp?
Please Don't mind .i want in detail the real time process i.e in each document what it contains.
What are the two types of repositories available, explain them?
How to use checkpoints in qtp ?
By using QTP can we record any log files written by the application which is in execution?
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.