Search results

  1. T

    Visual Studio IDE - best practices

    Hi, I'd need to add more actions such as for Collection Manipulation, JSON, XML etc. For Office applications like Excel I use their object model in their own code editor. For everything else I plan to use Visual Studio. Which type of project should I use: Windows Forms, WPF, Console App or...
  2. T

    Multiple browsers - concurrent manipulation

    Hi, is it possible to manipulate with 2 websites at the same time? Let's say 5 things like select from drop-down, write, click button on website 1 in Chrome and 5 things on website 2 in Firefox, both on same resource PC?
  3. T

    Download File via HTTP

    Hi, how to download file using HTTP Request? The end point responds with file which is only loaded to text data item. If I change "File URL" to True, it expects me to provide in "Body" the path to file when POSTing (uploading) via HTTP, I think. But I'd like to download file instead.
  4. T

    Add to queue - multiple tags

    Hi, I have multi-rows collection I want to "Add to Queue" and give all items same 2 tags: "Tech;Global". When I put this text into "Tags" input field, I get error that I can't use semicolon. But when I separate tags with comma, it'll become as 1 tag only. So how to add multiple tags to items...
  5. T

    How to run scheduler locally

    I have Blue Prism 6.6 installed on my PC. I scheduled task, assigned resource but on option"Run now" it doesn't do anything. Later I launched resource as public from Command Prompt: "C:\Program Files\Blue Prism Limited\Blue Prism Automate\Automate.exe" /resourcepc /public , then logged in BP...
  6. T

    IE HTML - click centre to view drop down

    Hi, on this website: https://www1.oanda.com/currency/converter/ , I need robot to click and view drop-down list with currencies. I can spy on all the surrounding elements using IE HTML spy mode, but the action "Click Centre" on none of those will show the drop-down. It only does when I manually...
  7. T

    VB helper to code stage

    Hi, is it possible to use other software to write code and replicate / copy it into BP code stage? For example, Visual Studio (note: I never used it) ? Or to integrate a text editor like VS Code? How do you compensate for missing intellisense and what best practices do you follow ?
  8. T

    Execute Batch File problem

    Hi, with Utility - Environment / Run Process Until Ended, I execute a .bat file. If path doesn't have spaces, arguments like this work: "/c C:\MyBatch.bat", if spaces, then I wrap path into double quotes: "/c " & Chr(34) & "C:\New Folder\MyBatch.bat" & Chr(34). But if path has other characters...
  9. T

    Paste collection to Excel / CSV

    Hi, I noticed "Write Collection" in MS Excel VBO which writes collection row-by-row into spreadsheet. So does "Get Collection as CSV" in Utility - Strings VBO. Is there a way to paste collection in single go without looping rows ? Like in VBA - e.g. Range.CopyFromRecordset() or...
  10. T

    MS Excel VBO - Run Macro with ParamArray

    Hi, I'd like to update Action - "Run Macro" in MS Excel VBO to accept variable number of arguments. So a robot will run 2 macros: Sub First(country as string) and Sub Second(country as string, population as long, isDuplicate as boolean). Since I cannot put in code stage fixed number of...
  11. T

    How to spy on invisible elements (Browser)

    Hi, on this website (Currency Converter), I'd like to overwrite currency-from and currency-to using Blue Prism. When spying, I can get only SPAN or it's parent DIV elements. However, the Write Stage doesn't change Currency values of SPAN or DIV. After I inspected website, I found there is an...
Top