Uipath interview

Hi Guys,

I gave one interview recently and they asked me:-
Question :
what is the most exact way to access UIpath studio UI element.
Please Explain and why?

Please help

3 Likes

@Abhishek_Kumar_sinha

We will use UI Explorer to access UI Elements.

5 Likes

Hi @Abhishek_Kumar_sinha

The most exact way to access ui elements through uipath Studio is to use the UIExplorer and generate the most appropriate selectors using wild cards wherever required to prepare the most suitable dynamic selector.

The reason to use UIExplorer is because it gives you all the properties which you can use to make the best suitable selector. Additionally it also allows you to highlight the elements and check the validity along with selecting the selector types as well…

5 Likes

Thanks for the Explanation :slight_smile:

3 Likes

Yes, Ui Explorer this is very advance tool to create custom selector it gives the displays a tree of the UI hierarchy and enables you to navigate through it, by clicking the arrows in front of each node.

“UI Explorer is an advanced tool that enables you to create a custom selector for a specific UI element. It is available only if the UiPath.UIAutomation.Activities package is installed as a dependency to the project.”

Displays the selector for the specified UI object and enables you to customize it.

Displays all the available attributes of a selected node (from the Selector Editor panel).

Displays all the attributes that a specified UI object can have, including the ones that do not appear in the selector. They cannot be changed.

Hope you can understand and for more information please go to below link:

Cheers @Abhishek_Kumar_sinha

2 Likes

How can we identify a column in Data Table.

HI @Abhishek_Kumar_sinha

You can Identify a column in the datatable using two methods…

  1. Use of the column name
  2. Use the column index…

if you are trying to access the data in a for each row loop, you can use…

– with column name
row(“ColumnName”).ToString

– With column indx
row(0).ToString

Column index always starts from 0… Means, first column is 0 and second is 1 and so on…

5 Likes

In Uipath, How element are recognized on screen?
what all activities we have available to recognized the element on screen.

1 Like

@Abhishek_Kumar_sinha

Refer to this section of the online documentation on the UI Automation activities… It includes all the details you want :slight_smile:

1 Like

Thanks :slight_smile:

2 Likes

hey abhishek

inorder to get exact ui element in uipath studio you must use “uiexplorer” and select so that you will get the exact attributes of ui character the ,for more often it better you use dynamic selector “*” or “?”.

Mock interviews

1 Like