rpa

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

Powershell with UiPath

假装没事ソ 提交于 2019-12-10 11:40:30
问题 I am kicking off a PowerShell script with UiPath. I need to pass an argument in, from UiPath. Firstly is this possible and secondly does anyone have an example of this? Not sure what the syntax is for this in the PowerShell script 回答1: Is it possible to pass arguments from UiPath to the terminal. Your PowerShell script needs to be saved in a txt file.(PSSampleParameters.txt) Code sample(PSSampleParameters.txt): Param( [string]$computerName ) [System.Reflection.Assembly]::LoadWithPartialName(

Robotic Process Automation (RPA) Express execution error

Deadly 提交于 2019-12-09 22:58:30
问题 I have installed RPA express and recorded a process, but when I tried playing the recording it was showing an execution error " Unable to connect with robot". How can I get it resolved? 回答1: Check Bot Manager status. Probably, it's not started. To start Bot manager, open RPA Express tray menu and click Start in the Bot Manager section. If it does not help, choose All Components > Restart 来源: https://stackoverflow.com/questions/43415564/robotic-process-automation-rpa-express-execution-error

Need Clarification on Uipath Licensing

纵饮孤独 提交于 2019-12-09 19:52:34
问题 I need information on UiPath licensing. Let’s say I’ve 2 bots and I want to run these 2 bots in parallel in 20 different VMs. So, in these cases do I need to have 2 bot licenses or 20 bot licenses? 回答1: In general, a bot is regarded as the entity that executes the process/sequence. So, in your case, you would need two concurrent licenses to run the bots in parallel on 20 different VMs provided that the processes are executed and completed sequentially. You could even use a single license for

Set html table header as rpa collection header

二次信任 提交于 2019-12-08 09:05:11
问题 Ive managed to get html table and change it to collection. However i would like for the table header to become the collection header. Is it possible to do it? Thanks. Below is for further details on how i take the table element and change it to collection. The path that im getting from the html table inside application modeller: /HTML/BODY(1)/DIV(2)/FORM(2)/DIV(1)/TABLE(1) Then i use Read stage and choose the table as the element and set Data as Get Table function and save the collection. The

How can I spy an active accessibility combobox in blue prism? I want to open the combobox and select an element from it

匆匆过客 提交于 2019-12-08 03:13:50
问题 So I have a combobox for the user to select whether he is an old customer or a new customer. With my process I was able to identify the combobox as an AA element so my process is now able to identify the combobox and click on it when it runs. But the problem starts when I need to select the "new customer" option after opening the combobox. I am unable to identify the option either as a HTML element nor an AA element.Because of this,the process is not able to select an option and throws an

Powershell with UiPath

你离开我真会死。 提交于 2019-12-08 00:47:25
I am kicking off a PowerShell script with UiPath. I need to pass an argument in, from UiPath. Firstly is this possible and secondly does anyone have an example of this? Not sure what the syntax is for this in the PowerShell script Is it possible to pass arguments from UiPath to the terminal. Your PowerShell script needs to be saved in a txt file.(PSSampleParameters.txt) Code sample(PSSampleParameters.txt): Param( [string]$computerName ) [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") [System.Windows.Forms.MessageBox]::Show($computerName) Add a "Read Text file"

Get data from web page using JavaScript in BluePrism

柔情痞子 提交于 2019-12-07 14:34:08
问题 Could someone tell me how can I, in Blue Prism, get data into Data Item from web page using action in Navigate stage Invoke JavaScript or Insert JavaSript fragment ? For example I'm using function: function myFunction() {var x=document.getelementById("demo").innerHTML; return x;} and I'd like to get this return value into Data item in Blue Prism for processing. 回答1: Unfortunately there is no quick way of doing that, however there is a very easy workaround. You need to create a "bridge"

Get data from web page using JavaScript in BluePrism

杀马特。学长 韩版系。学妹 提交于 2019-12-05 18:33:52
Could someone tell me how can I, in Blue Prism, get data into Data Item from web page using action in Navigate stage Invoke JavaScript or Insert JavaSript fragment ? For example I'm using function: function myFunction() {var x=document.getelementById("demo").innerHTML; return x;} and I'd like to get this return value into Data item in Blue Prism for processing. Unfortunately there is no quick way of doing that, however there is a very easy workaround. You need to create a "bridge" between JavaScript and Blue Prism, something both technologies can interact with. In this case the simplest bridge

RPA Vs Traditional Automation Tools

China☆狼群 提交于 2019-12-05 08:07:42
问题 I am Test Automation engineer and recently got opportunity to explore RPA tool blueprism. After exploring I found it similar to UI automation tools supporting various technologies. Can anyone tell me what value RPA adds compare to traditional tools. I was interested to see how it can use 'intelligence' but couldn't find any feature. Can expert in this forum help me understand what RPA can do which traditional tool can not do ? I see similar questions but they do not give any answers I am