What is the difference between CVS and VSS? Are you store
QTP SCRIPT In VSS OR CVS? Where you store QTP Script?
Answer / sathish
both are configuration management tools. we maintaiall
scripts in the form of frame work in the tool. total ur
frame work store in the confi tools with version numbers
when ever u want u can open
| Is This Answer Correct ? | 4 Yes | 3 No |
how to get column count in datatable
How to capture text from image to word
Can you write a script for to insert array elements in an excel A to Z columns only. if the number oe elements in the array is greater than the number of columns (A to Z), come to next row and proceed furthur. eah cell should contain only one array value.
can u tell me the the cost of automation tool QTP ?
suppose in the middle of the project QTP will not work properly, then what do u do? and ur team?
What is expert view and keyword view?
IS standard check point is very important than the other check points in QTP? If so why?
Hi ,Can any one pleas explain how to test splash objects using QTP?
What is QTP and the use of QTP in TD?
I added 5 edit box objects in OR.i run the script and the first edit box successfully executed.But on next day when i executed same script for second edit box,it gives an error "object not Found". But when i used Highlight in app. object already in OR.So how i will handel this type of error. Hi please inform me the write answer.Its urgent.
What is the synchronization point in qtp?
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