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 |
Can i run the qtp, without OBJECT REPOSTIRY...
How to check the value for variables during run time. Pls anybody can give the answer.. Thanks in advance...
Using QTP checkpoint, where do you store your expected Properties of the object which later compares with the actual properties of the object???
How u will do versioning in QTP?
If an application name is changes frequently i.e while recording it has name, in this case how does QTP handles?
How we can do Batch testing in QTP?
Action1: I have a value "test" stored in a variable X. I want to use that variable X in Action2 .. how?
Where should we turn Smart Identification ON in QTP?
1) What is the diff Between GetRoproprty and Gettoproperty? 2)What is Redim?
I am new to automation testing.I am learning QTP 9.2.my question is how to install the defferent addins(other than Default Addins) is there any defference in QTP after installing the Addins.where we can get the addins?
how to associate object repository during runtime in qtp
WHAT IS ENVIRONMENT VARIABLES?