Suppose i have a script which is having 100 lines.I want to
execute that script starting from line no 75.means first
qtp should read the script from line no 75 how can u do it.
Answer Posted / uday kumar_anem
Raghavan, you are correct.
And another way of doing this is:
once you click at line 75, right click on your mouse and
choose Run from Here option.
It will execute from line 75.
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is fragmentation and paging?
How to analyzing test results using quicktest professional (qtp)?
in qtp 3 sheets is there in data table like global, action1, action2. I want to check the rows and columns in action2. how can check using script?
What is the difference between byref and byval in qtp?
How does quicktest professional (qtp) identifies the object in the application?
How software tester can use constants and variables in scripts?
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.
Hi, can explain the draw back of manual testing.plz send me the answer to my mail id deepthip1985@gmail.com
I have developed and executed a script successfully, and saved the same to QC. When I tried to execute the script from QC, the script is not executing. What are the possible reasons?”
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
What is qtp window?
how do u manipulating INI, DLL and / or registry files in support of your test environment? actually what do u mean by INI and DLL or registry files. plzzz its urgent do answer
what is ODC and GDC?
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
Where we can use the analog mode and where we can use the low – level mode?