Hi I am trying to fetch email from gmail accout by using load runner. I have tried ,IMAP, POP3 protocol.
Using Vugen 2020
IMAP Protocol
I used below code:
imap_logon("GmailLogin","URL=imaps://{UserEmailID}:{Password}@imap.gmail.com:993","STARTTLS",LAST);
imap_select("SelectInbox","Mailbox=INBOX",LAST);
getting below error: Action.c(5): Error (-205597): Failed to receive IMap welcome message from imap.gmail.com:993.
I have used gmail app password and also enabled IMAP setting in gmail.
POP3 PROTOCOL
pop3_logon("Login", "URL=pop3s://{UserEmailID}:{Password}@pop.gmail.com:995","STARTTLS", LAST);
getting below error: Action.c(6): Error (-205685): Failed to establish a secure POP3 session.