QTP 10.0 is not identifying web objects for IE 8.it is
identifying like winObject.I installed HP patch
QTPWEB_00037.Still getting issue
Answer / yuvesh kumar goyal
Just do One thing. It might be possible that you have enabled Protected Mode in IE. So just Open the IE. Go to Tools>>>Internet Options>>>Security Tab>>> Uncheck(Disable) the Protected Mode checkbox
Click 'Ok'
Restart the IE. And Hurraayyyyy!!!!
It will work.
| Is This Answer Correct ? | 2 Yes | 0 No |
How to use Environment parameterization in QTP? Explain with an example.
How to upload excel files into Quality Center using QTP Script and how to delete excel files from Quality?
how to capture tool tip in QTP and which check point is needed
Have you faced any problems with object repository?
How do you use the parameters.input parameters and out put parameters.
can any one say that where we can download the QTP trail version ??????????
What is the use of defining a newobject in the object repository "Define New TestOject". How to use this further. If we define new testobject, how can it recognizes the objects properties of any application.
what is the difference btn risks & Therads in the Test plan documentation?
If I want to run more than one test (With different functionality) with in one script, then what i do? plz. explain with any example.
What is the new version of qtp which is recently released in the market?
write a script to validate the content in the web application. (do it by OR method) and (do it by Descriptive method by creating a description object.. (give a filter condition only WEbelement- not easy need to use some more property while giving filter condtions- use google for your help...))
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