RPA UiPath Frequently Asked – Interview Questions – Set 5

1. Suppose I have a folder full of files, with different formats .i.e .jpeg, .Mp4, .zip, and so on… How can I get only .zip files from that folder? File management is inevitable in business process automation. We might want to copy, move or delete files based on a few conditions…!!!Let’s see how to get … Continue reading RPA UiPath Frequently Asked – Interview Questions – Set 5

RPA UiPath Frequently Asked – Interview Questions – Set 4

1. What are the different approaches to removing new lines available in a text string? Let’s look at different ways of doing it: If we have the input string as: Hello Sharath Hope you are doing well Let’ write the code to handle it: System.Text.RegularExpressions.Regex.Replace(myText, “\t|\n”, “”) The \n symbol means literally new line. This will go to … Continue reading RPA UiPath Frequently Asked – Interview Questions – Set 4

RPA UiPath Frequently Asked – Interview Questions – Set 3

1. Why do we always use Excel as a configuration file in ReFramework? Can’t we use .txt or .csv or .json files instead of it? We can actually use any of the above-mentioned file types as a configuration file, but we prefer an excel file because of its tabular form, it’s considered to be a … Continue reading RPA UiPath Frequently Asked – Interview Questions – Set 3

RPA UiPath Frequently Asked – Interview Questions – Set 2

1. What is AS-IS and To-Be Process? AS-IS, commonly referred to as “present state,” describes how a process is being carried out at the moment, including all of the steps required and the tools and technologies utilised to finish the process. TO-BE, also referred to as the “future state,” describes how a process will be … Continue reading RPA UiPath Frequently Asked – Interview Questions – Set 2

RPA UiPath Frequently Asked – Interview Questions – Set 1

1. What are the benefits of Manage Packages option in UiPath? The Manage Package option in UiPath Studio allows users to download activity packages and libraries. It also allows users to view and update the ones already installed for the project and add new packages which are required for the current project or remove them … Continue reading RPA UiPath Frequently Asked – Interview Questions – Set 1

Guidelines for Publishing on UiPath Connect – By Anmol Yadav

Following topics will be covered : Publishing Custom Activity Publishing Snippet Publishing Workflow Template Publishing Solution References Click here to download the “Guidelines ebook” I hope you enjoyed the post!!! You can connect with Anmol Yadav, she is always happy to help 🙂

Tips on publishing your Snippet/Workflow-Template to UiPath Connect

If you just follow all the mentioned guidelines, your component might get approved in the first go itself says Parth Doshi All the best… Click here to download the document If you need any help you can contact Parth Doshi on the below given number.Contact: +917620344502LinkedIn : https://www.linkedin.com/in/parth-doshi-2616b6127/

How To Add New Value(Data Row) to Existing Datatable – UiPath

Get Interview Guidance for FREE Meet people like you… Get Real Time Projects at discounted Prices FREE – Join Our UiPath Interview Prep Whatsapp Group Sometimes while working with DataTable, we might want to add new data to our existing DataTable. Let’s see how to do that!!! Example Implementation using UiPath : Step 1: Drag … Continue reading How To Add New Value(Data Row) to Existing Datatable – UiPath

How To Use Invoke Method Activity – UiPath

The InvokeMethod activity is another way to implement a code which is outside of the standard built-in activities. You can use this activity to invoke a method of a class. The class does not need to be part of the workflow or use any of the workflow base classes. The InvokeMethod calls a public method … Continue reading How To Use Invoke Method Activity – UiPath

How to take a screen shot of the selected area on the screen – UiPath

There are lot of situations during the process execution where we have to take the screenshots, they can be used to convey some information or while trouble shooting the issues. To achieve this, UiPath has an inbuilt activity “Take Screenshot” activity in UiPath.Core.Activities. This activity can be used to take screenshot at runtime. let’s see … Continue reading How to take a screen shot of the selected area on the screen – UiPath