Recent content by sumire

  1. S

    REG String

    How about using AVO.RegEx First evaluate with AVO.RegEx, then use choice stage RegEx is here https://digitalexchange.blueprism.com/dx/entry/3593/solution/avoregex Action ”Test Regex Match" Input: Pegex Pattern : "[a-zA-Z]" Text To Perform Search On : Data Item (1 character to evaluate) Output...
  2. S

    How to count number of elements in a web page

    Hi, I want to count number of elements in a web page. (ex. how many '<li>' in a web page?) If I do with JQuery: $(function() { var size = $('li').length; alert(size); }); or VBA: document.getElementsByTagName("li").length I want to do same as this with Blue Prism. Please tell me...
  3. S

    how to count the number of elements in a web page

    Hi, I want to count the number of elements in a web page. (ex. how many '<li>' in a web page?) if I do with JavaScript, I do: $(function() { var size = $('li').length; alert(size); }); I want to do same as this by blue prism. Please tell me how to do. Thanks in advance
Top