Recent content by tomahawk1

  1. T

    Return a value using javascript in blueprism

    I think, what I did back then was using javascript (Insert Javascript Fragment) to: 1. create textarea 2. assign an ID to textarea 3. assign output value to textarea a.k.a write value in it Then with Blue Prism, I read the value from element and stored it in data item. I probably had element...
  2. T

    Blueprism To Create Validation Drop Down List In Excel

    You have to replace Excel constants with their real value as they are not loaded (declared) in Blue Prism: Type:=3, AlertStyle:=1
  3. T

    Activate Application sometimes throws exception

    My tips: minimize attributes in application modeler. If it's a windows app, maybe just window title could be enough? If title changes, use wildcard or dynamic value. Before activating window, check if process exists (Utility - Environment), then read "is connected" status of root element and...
  4. T

    Picking items from the work Queue mechanism

    Do you get excel worksheet as collection and then load it to queue in 1 go? Haven't tried, but theoretically, I'd loop that collection and add row by row to queue. I'd try to do it this way: 1) Get Worksheet as Collection 2) Get number of rows of that collection (e.g. 100 rows) 3) Loop...
  5. 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...
  6. 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?
  7. T

    Return a value using javascript in blueprism

    I'm also interested in. Insert Javascript Fragment action can accept data item as input, but how to output result back in data item? The "Outputs" tab is blank. Or is there another way please ?
  8. T

    Download File via HTTP

    @sahil_raina_91 Thanks, but body is not required. It's a GET request which I tested in Postman. Response is not text but file so content of text data item is gibberish. @Rich Hi, these are response content headers: 'Content-Type'...
  9. T

    Download File via HTTP

    or do you have a vb.net script for that and which libraries to import in global code please?
  10. 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.
  11. T

    Add to queue - multiple tags

    Great, @Emerson Ferreira , thanks a bunch!
  12. 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...
  13. T

    Dropdown In Web Application

    In my drop-down list, only single word items can be selected. How to refer / select items that have multiple words?
  14. 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...
  15. T

    IE HTML - click centre to view drop down

    thank you guys
Top