How to send the qtp results file by email (Lotus notes).
Answer / a.thirumalareddy@gmail.com
Function SendMail(SendTo, Subject, Body, Attachment)
Set ol=CreateObject("Outlook.Application")
Set Mail=ol.CreateItem(0)
Mail.to=SendTo
Mail.Subject=Subject
Mail.Body=Body
If (Attachment <> "") Then
Mail.Attachments.Add(Attachment)
End If
Mail.Send
ol.Quit
Set Mail = Nothing
Set ol = Nothing
End Function
| Is This Answer Correct ? | 9 Yes | 8 No |
For example one window is there the window contain some of Check boxes but my question is how many check boxes are there particular window? Please solve the problem gi_raju@rediffmail.com ippaliraju@yahoo.co.in
explian qtp frame work and what is the use of it? what is the neceecity of this? explian detail?
how to tell about testing a website in interview using qtp?? what r the points to be covered mainly?
How does qtp identify the object in the application?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
how to upload an excel sheet to quality center?
What are Add-ins availble in licensed version QTP8.2
QTP Testing Process?
What is ObjectParamater?
How do I modify a value of an elemnt which is not the first one in xml file? My sample XML file is like: <Environment> <Variable> <Name>Name</Name> <Value>Uday Kumar</Value> </Variable> <Variable> <Name>Designation</Name> <Value>Senior Software Engineer</Value> </Variable> </Environment> for example, I'd like to change the value 'Senior Software Engineer' to 'Student' in the second element. How do I do it in QTP?
For what purpose to we use object repository in a application?also explain usage of obj.repository?
Why you are Using Descriptive programming instead of Object Repository?