what area in a web application cannot be automated.
Answer Posted / pravati
Background of the web application can not be automated
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In keyward driven framework what will be the step for yahoo login page ,inbox logout,plz explain in detail
how to know no.of mails in our g mail by using vb-script
Explain the concept of how quicktest professional (qtp) identifies object?
What is the syntax for how to call one script from another?
How do you check ticket cost and ticket number in flight application?
if our qtp vb Script may be Currepted then What we want do?
What is the extension of the qtp local repository?
what are the limitations of smart identification in qtp 9.0
Hi Samrat, Thank u very much, what u said it is right.
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 the extension of qtp local repository?
Where to use function or action?
in a web page hoe to check the dynamic links that rechabging with out using regular expressions
Plz Explain AUTOMATION REFERENCE MODEL?
i have two questions for regular expression :- Q1. I have date pattern eg-29/11/2011 29-11-2011 29.11.2011 Que- if any separator is there between date,month and year pattern should match else it should not match eg- pattern should not match in case of 2911-2011 Q2. let say i have a string and there is a number in between of that string eg.-Amount 30002.234 successfully credited to your account . now i have to match this pattern in such a way that even if decimal is not there pattern should match ,how i will do this using regular expression