When I start recording any web application (either Mozilla
or IE) QTP recognizes window instead of browser and also it
does not show all the hierarchy tree of that particular web
page.
1. Window("Mozilla Firefox").Check CheckPoint("Mozilla Firefox")
2. As everybody knows it should be
browser("Mozilla Firefox").Check CheckPoint("Mozilla Firefox")
I am using the windows vista, do you think it may be a
problem of my settings in QTP or problem of my installation.
Your kind responses will be appreciated.
Thanks in advance.
Satya
Answer Posted / kalpesh
i had the same problem with internet explorer and i solved
it by unchecking the protected mode option in the internet
explorer i.e go to internetexplorer right click and select
internet properties then click on security tab in that
uncheck the enable protected mode option. i am not sure
about firefox but
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is environment variable in qtp and why to use it?
I am in .Net development for past 3.5 years and want to enter in to automated testing and learn QTP. For this I need some good tutorial for beginners. I will be really greatful if any one has and they can send it to me on this address- ruchidureja@gmail.com
How to add verification steps to tests?
How to find the name of the machine where you are running your automation scripts in qtp?
Explain step generator in qtp?
how to convert 100 into hundred repees only and viceversa
What is an optional step in qtp ?
How to read a text file from QC using QTP. I would like to do something like this. But instead read a file from QC and NOT from my local drive. Set fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("C:\test.txt", ForReading) Thanks
On the website, the protocol has been changed https: to https what you will do? Tell me your approach?
How to export quicktest professional results to an .xls file?
How can i initiate the objects to find uniquely in OR
How QA specialist can identify when programmatic descriptions are useful?
Why to use descriptive programming?
Which environments are supported by hp 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