Questions tagged [rpa]

Robotic process automation (RPA) is a technology based on the notion of software robots or artificial intelligence workers.

Robotic process automation (RPA) is a technology based on the notion of software robots or artificial intelligence workers.

RPA software vendors include:

  1. Automation Anywhere
  2. BlackLine
  3. Blue Prism
  4. Datamatics
  5. EdgeVerve
  6. HelpSystems
  7. Kofax
  8. NICE
  9. Openspan (acquired by Pegasystems)
  10. Verint
  11. UiPath
  12. WorkFusion
  13. Fusion from Exilant Technologies Pvt. Ltd.
713 questions
2
votes
1 answer

In UiPath, using Invoke code activity I am trying to get files in a folder which are updated or modified in last 24hrs

These are the codes that I have tried Dim myDirectory As new.IO.DirectoryInfo("C:\MyFolder") Dim myFiles() As String = myDirectory.GetFiles.OrderByDescending(Function(x) x.LastWriteTime).Select(Function(x)…
mouny
  • 45
  • 1
  • 7
2
votes
1 answer

UiPath Activity Creator - package version not changed

I am starting out with UiPath and am at the point of creating custom activities / packages. I am using UiPaths Activity Creator. Following a successful publish to UiPath , I would like to be able to make code changes and then re-publish. As part of…
2
votes
1 answer

How to extract the body of an multipart email and save the attachments using python IMAP?

I am working on a project where I get emails with a specific 'subject'. There are forwarded to me by users. The body consists of text but in the original email and no new text is entered above the forwarded line. There are also attachments to …
2
votes
1 answer

How can I run a robocorp or robotframework file (.robot) on Raspberry Pi?

I have been testing my robocorp codes via Robocorp Lab (IDE), but I want to give it a try in a Raspberry Pi to make some tests, do you know how to do such thing? I cant install Robocorp Lab or rcc in Raspberry Pi, they are not available, is there…
willyro93
  • 143
  • 1
  • 10
2
votes
1 answer

WorkBookPath property is not available in UiPath Studio

I am working on one project in UiPath Studio. I am not able to find WorkbookPath option in Read Range activity. Is there any other option, from where I can browse my XLSX file in Read Range activity. Please check attached screenshot.
Aditya Vyas-Lakhan
  • 13,409
  • 16
  • 61
  • 96
2
votes
2 answers

UiPath: Unable to find UI Element corresponding to this selector

I'm taking a course on UiPath, but there are some subtle changes from the precise content presented by the course and what I'm working with. This appears to be because of subsequent updates or iterations to browsers, though this particular behavior…
Saint Razz
  • 53
  • 1
  • 7
2
votes
2 answers

Values from a column in UiPath - Need most efficient way

In UiPath, what’s the most efficient method to get a list or array of all the unique values in a column from a DataTable? Preferably without looping
Sergio Salerno
  • 125
  • 1
  • 2
  • 8
2
votes
2 answers

Robot framework: How to locate a input text field and how to input a value in it

My HTML is like this: if I try to get the Xpath of the html path I get below Input Text path but I am also not been able to input any text and get…
vgdub
  • 347
  • 5
  • 15
2
votes
1 answer

Uipath sharepoint activities - GetListItem getting unwanted metadata column and data

I want to get list items from Sharepoint, I am using UipathTeam.sharepoint.activities. I tested the connection is working fine. However, the issue is when I write the output data table to CSV, the data table showed differently. The column name is…
Garvill Chin
  • 21
  • 1
  • 2
2
votes
0 answers

Uipath - Unable to perform API call using post method

So, I am trying to replicate the process I automated using Excel VBA+Selenium to UiPath. In that, the first step is to get a set of details from a table stored in a database using API. So I created an HTTP request under a sequence and enter the URL…
David
  • 149
  • 5
  • 18
2
votes
1 answer

How can I add two columns in an excel sheet using the column name instead of giving cell number range to locate the columns in Uipath

I basically want to perform addition of two columns and store the result in third column. But the challenge is I cannot use the cell number of columns to locate the columns. Instead I have to use the column name/header and when I find the header I…
2
votes
1 answer

Extending Types in UiPath

I have a c# class that is extending types as follows: public static class TypeExtensions { public static String nameof(this TType obj, Expression> propertyAccessor) { if…
Alan
  • 411
  • 6
  • 18
2
votes
1 answer

How to get UIPath to type into a specific point in a window?

I'm trying to use UIPath to automate some gruntwork in Adobe Premiere, which includes typing in a specific text field. The problem is, UIPath doesn't recognize that text field as its own element. It recognizes the window the text field is in as an…
Tyll'a
  • 526
  • 1
  • 5
  • 17
2
votes
1 answer

How to close the child tab using Close tab activity in UIPath

UiPath is closing the main window instead of child window. I have defined a browser variable in the attach browser activity and passed that browser variable to the Close tab activity. The main Chrome window is still getting closed. Also attached…
Carolyn Cordeiro
  • 1,525
  • 3
  • 11
  • 26
2
votes
1 answer

Add Japnese Support to OCR | RPA

How can I add Japanese language with OCR? I would like to know where the language files are located and how to select them.
Soma Rohit
  • 23
  • 2
1 2
3
47 48