blueprism

In Blue prism button is not able to click while executing mode

六月ゝ 毕业季﹏ 提交于 2019-12-24 21:36:12
问题 Hi I am new to blue prism My question is: I have button in my application after recording if i try to highlight it is working fine but while executing it is not able to click the button and i am not getting any error. 回答1: If you provide a screenshot of the attribute list in your application modeler, it might be easier to provide an accurate answer. However, for now, I can give you some pointers: For most applications the following can be unticked: any elements with a blank value all 'Parent'

Does docker allow for robotic process automation?

不羁的心 提交于 2019-12-24 20:32:47
问题 Can docker containers be used along with UI based RPA tools like blueprism or uiPath? Blueprism recommends using virtual machines but offers no support of docker 回答1: Yes it will be possible. I'm unfamiliar with the solutions you describe so I'm unable to provide you with specific examples. Any Linux (and Windows) process can be run in a container. Docker made containers into a thing but they're really not. They're just (very useful) conceptual "sugar" on Linux namespaces and cgroups to make

Delete duplicates in a single dataset relative to another one in C#

好久不见. 提交于 2019-12-24 11:59:22
问题 I'm new to C#. Trying to remove duplicates in CollectionIn1 but it doesn't work. No duplicates are removed in CollectionIn. Just to clarify, the collectionIn has [A,B,C,D] and collectionIn2 has [A,B,C]. So i want to remove the values (A,B,C) in collectionIn for (int i = 0; i < CollectionIn.Rows.Count; i++) { string value1 = CollectionIn.Rows[i].ItemArray[0].ToString().ToLower(); for (int i2 = 0; i2 < CollectionIn2.Rows.Count; i2++) { string value2 = CollectionIn2.Rows[i2].ItemArray[0]

Blueprism: how to use the replace function in a calculation stage?

天大地大妈咪最大 提交于 2019-12-14 03:56:01
问题 I am reading a text from an application using BluePrism. The text has the following structure (the number varies from case to case): "Please take note of your order reference: 525". I need to be able to extract the number from the text. Looking at the calculation stage, there is a replace function: replace(text, pattern, new-text). I want to use this function to replace all alphabetic characters in my text with an empty string to return only whatever is numeric. How can I input that in the

Schedule process not working in Blue Prism

此生再无相见时 提交于 2019-12-12 06:56:59
问题 I am trying to schedule process in blue prism which is not working .. nothing happened .. I have searched all the forums not able to find the solutions .. can anyone help me I went to Schedules -- > New Schedules ---> selected Task ---> provided UTC time to run the process------> New Schedule Task--> Drag and dropped the process from Available to resources and Clicked Apply Changes. Provided UTC time, and tired to change the Local machine time to UTC time zone, I have a Enterprise Licence,

Application launch in blue prism

瘦欲@ 提交于 2019-12-11 13:35:30
问题 I am trying to launch an windows application. I have given executable path. Whenever I click on launch, it’s not changing to Identify. It’s coming back to Launch. So what could be the issue? 回答1: When the application is successfully launched, but the button does not change from "Launch" to "Detach", it's usually an issue with how you've targeted your window's title. Usually, appending wildcards to the ends of the window's title will assist in matching correctly. Additionally, ensure that the

Handling multiple html combo boxes in BluePrism

 ̄綄美尐妖づ 提交于 2019-12-11 04:52:17
问题 On a web page there are two html combo boxes, value in the second combo box depends on the values selected in first combo. When I do this manually it works, but with BluePrism on selecting value in first box the values in second combo box doesn't load. 回答1: I think that it be so, that when you're using blueprism "select item" action instead of clicking using mouse, then some javascript code must not be executed. I'd try to investigate a page that you're automating. I'd search for the

App modeller, Identify button not showing up in blueprism spying

左心房为你撑大大i 提交于 2019-12-11 04:15:45
问题 I am creating calculator VBO in blueprism object studio. In application modeller I gave calc.exe path and able to launch calculator, but I am not getting identify option to spy on any element.. In Element, After clicking Launch buttion, identify is appearing for a split of sec and Launch button is coming back instead of Identify PS- As mentioned in videos and links, I have launched calc via application modeller not directly via windows.. I am using windows 10, BluePrism V.5.0.11.0

DLLImportAttribute C# - Outlook

不羁岁月 提交于 2019-12-10 12:33:53
问题 I'm trying to develop a snippet in C # code that enables the "voting option" function of Outlook. This code will be used by a platform called Blue Prism. The "vote" function of Outlook is in the Microsoft.Office.Interop.Outlook namespace, so I need to import it using C#, but I dont have enough knowledge to develop this. I tried to do something like this but it is giving an error. Here is the code: public class program { [DllImport(@"C:\Program Files\Blue Prism Limited\Blue Prism Automate

Blue Prism - Collection to Object

微笑、不失礼 提交于 2019-12-10 12:24:19
问题 I'm looking to feed a collection from my process to my business object. My object is designed to run multiple statements. Instead of storing the statement numbers in the object as a data item, I would like the data pulled from my process. I currently have a collection in my process studio with an Action to pull from and Excel workbook. Not sure how to feed the collection to my business object? 回答1: To pass any data or collection item from process to object, you need to set it up as parameter,