<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Web path changing - used * &amp; ? &amp; + in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54115#M8697</link>
    <description>Thanks Ami for your help and quick reply.&lt;BR /&gt;&lt;BR /&gt;Your logic is too good however today i noticed that element produce 10052 and above number, if i am trying to add number ( like +1) and validate that number if exist or not then it will take too much time and robot ROI will get hamper.&lt;BR /&gt;&lt;BR /&gt;Really appreciate if you have any other solution.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nilesh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav&lt;BR /&gt;RPA Developer&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 24 Feb 2020 15:47:00 GMT</pubDate>
    <dc:creator>NileshJadhav1</dc:creator>
    <dc:date>2020-02-24T15:47:00Z</dc:date>
    <item>
      <title>Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54113#M8695</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am trying to automate one website using chrome however unable to automate that as the element path creating unique number (Not dynamically)&lt;BR /&gt;&lt;BR /&gt;Example &lt;BR /&gt;/HTML[1]/BODY[1]/DIV[1]//DIV[6]/DIV[52]/DIV[1]/..........&lt;BR /&gt;/HTML[1]/BODY[1]/DIV[1]//DIV[6]/DIV[192]/DIV[1]/.........&lt;BR /&gt;&lt;BR /&gt;in above path some time i am getting 52 some time 192 that mean no fix number, and this is drop down&lt;BR /&gt;&lt;BR /&gt;I try below things but it's not identify any element.&lt;BR /&gt;&lt;BR /&gt;1.I kept Match type as wildcard and in value added star sign (*) &lt;BR /&gt; /HTML[1]/BODY[1]/DIV[1]//DIV[6]/DIV&lt;LI&gt;//DIV[1]/&lt;BR /&gt;&lt;BR /&gt;2.I kept Match type keep as regex and in value added question mark sign (?)&lt;BR /&gt; /HTML[1]/BODY[1]/DIV[1]//DIV[6]/DIV[?]//DIV[1]/&lt;BR /&gt;&lt;BR /&gt;3.I kept Match type keep as regex and in value added plus mark sign (+)&lt;BR /&gt; /HTML[1]/BODY[1]/DIV[1]//DIV[6]/DIV[+]//DIV[1]/&lt;BR /&gt;&lt;BR /&gt;I know there are some way to achieve this.&lt;BR /&gt;&lt;BR /&gt;Could you please help to achieve this ?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh&lt;BR /&gt;RPA&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/LI&gt;</description>
      <pubDate>Thu, 20 Feb 2020 17:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54113#M8695</guid>
      <dc:creator>NileshJadhav1</dc:creator>
      <dc:date>2020-02-20T17:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54114#M8696</link>
      <description>I ran into this once. &lt;SPAN style="text-decoration: line-through;"&gt;Unfortunately, the path parser does not know how to interpret wildcards.&lt;/SPAN&gt; In our case, we were looking for a div container of content, not a div item in a pseudo-dropdown, but it should operate about the same.&lt;BR /&gt;&lt;BR /&gt;The good news is that you already know the rest of the path. Where you have your */? wildcard in, you'll want to feed it a dynamic value. This dynamic value should be a number item, defaulting to whatever your bottom range is; let's assume 52 for now, based on what you've said above. We'll call this data item [Div] for sake of argument. Have the process run a wait stage where check exists = True against this dynamic element. Path searches should take a second or (usually) less, so you can dial down the wait time on this stage. If nothing is found, have a calculation stage set to [Div]+1 and save that new value to [Div]. You'll then want a decision stage, to see if [Div] has exceeded some maximum value; let's assume 300 for now, but change this as you deem appropriate.&lt;BR /&gt;&lt;BR /&gt;If [Div]&amp;gt;300 results in True, have it toss a system exception that it can't find the element. If it results in False, it should keep incrementing until it (hopefully) finds whatever you're looking for. The element within the application modeler will need to rely on the other filters in order to function properly. So suppose you're looking for an item where Name = Foobar, you need to ensure this filter is enabled so it can find Foobar in the list at whatever div it's checking against at the time.&lt;BR /&gt;&lt;BR /&gt;Edit: It appears that wildcards&amp;nbsp;&lt;EM&gt;are&lt;/EM&gt; supported.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Feb 2020 20:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54114#M8696</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-02-20T20:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54115#M8697</link>
      <description>Thanks Ami for your help and quick reply.&lt;BR /&gt;&lt;BR /&gt;Your logic is too good however today i noticed that element produce 10052 and above number, if i am trying to add number ( like +1) and validate that number if exist or not then it will take too much time and robot ROI will get hamper.&lt;BR /&gt;&lt;BR /&gt;Really appreciate if you have any other solution.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nilesh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav&lt;BR /&gt;RPA Developer&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Feb 2020 15:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54115#M8697</guid>
      <dc:creator>NileshJadhav1</dc:creator>
      <dc:date>2020-02-24T15:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54116#M8698</link>
      <description>Yeesh. I ran some numbers against that and you're right - I'm getting somewhere between now 16 and 46 minutes.&lt;BR /&gt;&lt;BR /&gt;Are you able to find the element via accessibility? Make sure you have match index, ordinal, parent ordinal, ancestor count and aancestor count enabled.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Feb 2020 17:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54116#M8698</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-02-24T17:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54117#M8699</link>
      <description>HI Nilesh,&lt;BR /&gt;&lt;BR /&gt;I would suggest don't use Path like this. Start using real X path. It is very stable and you dont have to worry about the Div numbers.&lt;BR /&gt;&lt;BR /&gt;Please let me know if you have any doubt.&lt;BR /&gt;To use it just replace the Real X path in absolute x path.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Amlan Sahoo&lt;BR /&gt;RPA Consultant&lt;BR /&gt;Equinix&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Feb 2020 07:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54117#M8699</guid>
      <dc:creator>_Amlansahoo</dc:creator>
      <dc:date>2020-02-25T07:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Web path changing - used * &amp; ? &amp; +</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54118#M8700</link>
      <description>Hi,&amp;nbsp;&lt;BR /&gt;Can you clarify a little bit if you trying to click or interact with dropdown element, which is dynamic?&lt;BR /&gt;Or you are trying to select something from the dropdown, which have stable path?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Maybe you can try and spy that element by ID, not by PATH. Check it out.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kind regards, &lt;BR /&gt;&lt;BR /&gt;Dmitrij Mamajev&lt;BR /&gt;RPA Developer&lt;BR /&gt;Volvo Cars&lt;BR /&gt;Gothenburg - Sweden&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Feb 2020 07:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-path-changing-used/m-p/54118#M8700</guid>
      <dc:creator>dmma</dc:creator>
      <dc:date>2020-02-25T07:48:00Z</dc:date>
    </item>
  </channel>
</rss>

