0% found this document useful (0 votes)
86 views6 pages

6 Ui Path Question Answer

This document provides a summary of email automation and email protocols in UiPath including IMAP, SMTP, Get Outlook and Send Outlook. It discusses how to filter emails, select email folders, and handle delays. It also covers desktop automation activities, wildcards, logging files, and debugging processes.

Uploaded by

tanytanaya101
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
86 views6 pages

6 Ui Path Question Answer

This document provides a summary of email automation and email protocols in UiPath including IMAP, SMTP, Get Outlook and Send Outlook. It discusses how to filter emails, select email folders, and handle delays. It also covers desktop automation activities, wildcards, logging files, and debugging processes.

Uploaded by

tanytanaya101
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Stay Relevant. Stay Competitive.

RPA UiPath Interview Questions and Answers (Quiz Series - 17)

164). What is Email automation?


Email is that type of automation where we can automate all the email manual steps like sending the
mail, receiving the mail, attaching the attachments, downloading the attachments.

165). What is email protocol in UiPath?


IMAP, SMTP, GET OUTOUTLOOK, SENDOUTLOOK, POP3

166). Difference between IMAP, Get Outlook, Send outlook & smtp?
IMAP stands for internet map access protocol, through imap we can receive the customized mail.
Get outlook -Through get outlook activity we can receive the static mail
Smtp-it stands for simple mail transfer protocol for sending the dynamic mail
Send Outlook-Through this activity we can automatically send the static mail.

167). How many activities you have used in Email Automation?


There are four mostly used activity like Get outlook, IMAP, Send outlook & SMTP

168). How to filter mail through UiPath?


There are two ways to filter the email
i)we can filter through if condition in for each loop.
ii) We can provide filter condition in Get outlook filter option.

169). How to select folder of mail through UiPath?


For folder selection you have to change from imap or get outlook mail setting.

Get Outlook Mail Messages


This activity, as the name suggests, grabs your emails from the Outlook application and adds them to a
list. Let's take a look at the properties of this activity:

[Learn More: www.kausalvikash.in]


The most important are: Account, MailFolder, Top and MailMessages. Without these properties the
activity will not work.
Input:
Account: Insert your email address.
MailFolder: Generally you will grab your emails from "Inbox", but you could also place there any folder
from your Outlook application.
Output:
MailMessages: The easiest way is to press right click in the blank space ( or Ctrl+K ) to create the
output variable which is a list of MailMessages.
Options:
MarkAsRead: If you grab some emails that were not read, these will be checked as read in Outlook.
OnlyUnreadedMessages: Check this option to get only the emails that were not read.

170). What is port number of POP3 Gmail/ IMAP Gmail?

Port number of POP3 Gmail is-: 993

By default, the POP3protocol works on two ports:

Port 110– this is the default POP3 unencrypted port Port 995 – this is the port you need to use if you
want to connect using POP3 securely

By default, the IMAP protocol works on two ports:

Port 143– this is the default IMAP unencrypted port Port 993 – this is the port you need to use if you
want to connect using IMAP securely.

171). What is Port number of Smtp Gmail?

SMTP Port– 587 (default Google SMTP port).

Outgoing Mail (SMTP) Server-: gmail.com

Requires SSL: Yes

Requires TLS: Yes (if available)

Requires Authentication: Yes

Port for SSL: 465

Port for TLS/STARTTLS: 587

[Learn More: www.kausalvikash.in]


172). When you use IMAP activity, the mail you receive in which format? And how you can convert into
string?

Integration of Gmail with UiPath can be achieved through IMAP or SMTP protocols. But to retrieve email
messages, you will have to use the

Get IMAP Mail Messages activity of IMAP.

Once we read emails, the output will be list of mail messages, hence we have to loop through each mail
one by one,

Use for each activity: change argument type to type of the output of readMailMessages activity. inside
for each you can use item.subject / item.Message.

173) How to handle delay in UiPath?


The Delay activity enables you to pause the automation for a custom period of time (in the hh:mm:ss
format). This activity proves itself quite useful in projects that require good timing, such as waiting for a
specific application to start or waiting for some information to be processed so that you can use it in
another activity.

Example of Using the Delay Activity


To exemplify how you can best use the Delay activity, let's create an automation that writes two
messages to the Output panel, with a delay of 20 seconds between them.

Create a new flowchart.


Add a Write Line activity and connect it to the Start node.
Select the activity, and in the Text field, type "This is the start time."
Add a Delay activity and connect it to the previously added activity.

Select the activity, and in the Properties panel, in the Duration field, type 00:00:20. This is the 20
seconds delay that is going to be between the two logged messages.
Add another Write Line activity and connect it to the previously added activity.
In the Text field, type "Message delayed by 20 seconds.".

The final project should look as in the following screenshot.


Press F5. The automation is executed. Note that, in the Output panel, the two messages added in
the Write Line activities are written twenty seconds apart.

174). What is Desktop Automation?


Desktop automation is type of automation where we can automate all the desktop application.

175). Which desktop automation activities you have used in UiPath?


There are lots of mostly used desktop activities like Open application, close application, create folder,
save attachments, attach window,

[Learn More: www.kausalvikash.in]


176).Types of Wildcards in UiPath?
Asterisk (*) – replaces zero or more characters
Question mark (?) – replaces a single character

177). How to create log files?


Few things you may wanna implement:
→ Add today’s date as the name of the file, so that you will have a new log file for each day. (Note:
‘Append Line’ activity will create a new file, you just dont have to create file before running the process)
LogFileName = "Logs\Logs-" + Today.ToString("ddMMyyyy") + ".txt"
→ For each exception you may wanna capture the date and time when it was thrown as well. You can
use something like this under ‘Text’ attribute for your Append Line activity:
DateTime.Now.ToString + ": Application Failed to Launch." + e.Message

178). What are the wildcards?


Wildcards are symbols that enable you to replace zero or multiple characters in a string. These can be
quite useful when dealing with dynamically-changing attributes in a selector. Asterisk (*) – replaces zero
or more charactersQuestion mark (?) –...

179). how to debug the process?


Debugging is the process of identifying and removing errors that prevent the project from functioning
correctly. It is recommended to perform debugging during the design stage of the automation project,
at activity, file and project level.
Debugging can be performed using several options, defined in the ribbon and explained in
the Debugging Actions page.
By default, debugging is performed on the local robot. You can run or debug your projects using a robot
on a remote machine by enabling remote debugging.

Start Debugging

The options for running and debugging a file or project are available both in
the Design and Debug tabs.
Option Description

Debug Click Debug or use F5 to debug the whole project.

Run Click Run or use Ctrl + F5 to run the whole project.

Debug File Click Debug File or use F6 to debug the current file.

Run File Click Run File or use Ctrl + F6 to run the current file.
The default action under Run/Debug ribbon button can be configured from Backstage

View > Settings > Design tab. Pick from Debug File, Run File, Debug Project, or Run Project, as the
default action when clicking the button.

[Learn More: www.kausalvikash.in]


During debug, click the Break button to pause. The activity which is being debugged remains highlighted
when paused. Once this happens, you can choose other debug actions like Step Into or press Stop to
exit and return to design mode. The keyboard shortcut for the Stop button is F12.
It is recommended to use Break along with Slow Step so that you know exactly when debugging needs
to be paused. The Continue option is available when the debug process is pause
Source: Google, UiPath Community, Blogs, EmergenTeck.

Explore more: https://www.kausalvikash.in/uipath-interview-questions-and-answers

Series 1 : https://www.linkedin.com/posts/kausal-vikash-rpa_uipath-interview-questions-and-
answers-quiz-activity-6896364698342952960-pwEv

Series 2 : https://www.linkedin.com/posts/kausal-vikash-rpa_uipath-interview-questions-and-
answers-quiz-activity-6899922989236797440-Bah5

Series 3: https://www.linkedin.com/posts/kausal-vikash-rpa_uipath-interview-questions-and-
answers-quiz-activity-6904626296417329152-KiKN

Series 4: https://www.linkedin.com/posts/kausal-vikash-rpa_uipath-interview-questions-and-
answers-activity-6909719020162207744-
UYvl?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 5 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6914790365069725696-
25KI?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 6 : https://www.linkedin.com/posts/kausal-vikash-rpa_uipath-interview-questions-and-
answers-quiz-activity-6919498230271479808-
_gDe?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 7 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6927832433492918272-
EkHF?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 8 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6935404103925673984-
22zZ?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 9 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6942307426360520704-
9Ek0?utm_source=linkedin_share&utm_medium=member_desktop_web

[Learn More: www.kausalvikash.in]


Series 10 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6945576729851609088-
IwVH?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 11 : https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-
and-answers-activity-6949564590577831936-
acBK?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 12: https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-


and-answers-activity-6953193838786011136-lV7-
?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 13: https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-


and-answers-activity-6958257478010572800-
MLdX?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 14: https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-


and-answers-activity-6960805000092553216-
8zBy?utm_source=linkedin_share&utm_medium=member_desktop_web

Series 15: https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-


and-answers-activity-6965860730952646657-
X1Bc?utm_source=share&utm_medium=member_desktop

Series 16: https://www.linkedin.com/posts/kausal-vikash-rpa_rpa-uipath-interview-questions-


and-answers-activity-6968408382344974336-
vVA6?utm_source=share&utm_medium=member_desktop

[Learn More: www.kausalvikash.in]

You might also like