<?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 Element in Chrome not found in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75612#M28217</link>
    <description>Hello,&lt;BR /&gt;We are having a strange situation that when we run our process in designer, everything works fine. The elements are identified, and can be interacted with,&amp;nbsp; but when we run it inside a control room the process terminates with the following message&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ERROR: Internal : Failed to perform step 1 in Write Stage 'Write Username and Password' on page 'Login to Lander' - No element matched the query terms&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;this is being experienced in Chrome 79, and 80 with extensions 2.0.0.1 on Blue Prism 6.6&lt;BR /&gt;&lt;BR /&gt;Any suggestions of how to troubleshoot this behavior?&lt;BR /&gt;&lt;BR /&gt;thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Arkady Dudko&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 10 Mar 2020 17:32:00 GMT</pubDate>
    <dc:creator>adudko</dc:creator>
    <dc:date>2020-03-10T17:32:00Z</dc:date>
    <item>
      <title>Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75612#M28217</link>
      <description>Hello,&lt;BR /&gt;We are having a strange situation that when we run our process in designer, everything works fine. The elements are identified, and can be interacted with,&amp;nbsp; but when we run it inside a control room the process terminates with the following message&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ERROR: Internal : Failed to perform step 1 in Write Stage 'Write Username and Password' on page 'Login to Lander' - No element matched the query terms&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;this is being experienced in Chrome 79, and 80 with extensions 2.0.0.1 on Blue Prism 6.6&lt;BR /&gt;&lt;BR /&gt;Any suggestions of how to troubleshoot this behavior?&lt;BR /&gt;&lt;BR /&gt;thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Arkady Dudko&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 17:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75612#M28217</guid>
      <dc:creator>adudko</dc:creator>
      <dc:date>2020-03-10T17:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75613#M28218</link>
      <description>Hi Arkady Dudko, usually process runs very fast in control room compared to running in designer.&amp;nbsp;&lt;BR /&gt;please use a wait stage before the write stage and check whether the username exists on the screen or not using check exists action in wait stage.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kiran Annangi&lt;BR /&gt;Software Engineer&lt;BR /&gt;Dxc Technologies&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Mar 2020 06:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75613#M28218</guid>
      <dc:creator>KiranAnnangi</dc:creator>
      <dc:date>2020-03-11T06:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75614#M28219</link>
      <description>I think that Kiran answered the question well, but I just wanted to add a comment or two. You may know this, but it's important to know that navigate, write, and read stages never implicitly wait for an element to load before trying to work with the element. So, as Kiran pointed out, you'd want to use an intelligent wait stage to wait for the entire page to load or wait for a specific element to load or something like that.&lt;BR /&gt;&lt;BR /&gt;If this is a web app, I would suggest using an intelligent wait stage at the beginning of each of your actions that waits for the entire page to finish loading. This only works with an HTML element. The drop-down in the Wait stage line would be either Check Exists, Document Loaded, or Parent Document Loaded. Any of these three are fine to use, but they serve different purposes:&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;Check Exists: Waits for an element to be found up to the max timeout&lt;/LI&gt;
&lt;LI&gt;Document Loaded: Waits for the page to load but does not care about whether any particular element is found and will wait for the full page to load up to the max timeout&lt;/LI&gt;
&lt;LI&gt;Parent Document Loaded: Waits for the page to load and ALSO waits for the particular element to be found and will wait up to the max timeout. I usually use Parent Document Loaded because it effectively performs the job of both Check Exists and Document Loaded at the same time.&lt;/LI&gt;
&lt;/UL&gt;
&lt;BR /&gt;Just wanted to give my thoughts in case it helps!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Dave Morris&lt;BR /&gt;3Ci @ Southern Company&lt;BR /&gt;Atlanta, GA&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Mar 2020 00:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75614#M28219</guid>
      <dc:creator>david.l.morris</dc:creator>
      <dc:date>2020-03-12T00:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75615#M28220</link>
      <description>Hi Arkady&lt;BR /&gt;&lt;BR /&gt;We've had quite a few issues like this recently with Chrome. Is your version of Chrome supported by the version of BP that you're running? Newer versions seem to not be playing ball so if your Chrome is allowed to auto-update you may run into issues.&lt;BR /&gt;&lt;BR /&gt;You can view compatibility matrix here:&lt;BR /&gt;&lt;A href="https://bpdocs.blueprism.com/bp-6-7/en-us/Guides/chrome-firefox/chrome-firefox.htm" target="_blank" rel="noopener"&gt;https://bpdocs.blueprism.com/bp-6-7/en-us/Guides/chrome-firefox/chrome-firefox.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Craig Farley&lt;BR /&gt;Partner Apps Manager&lt;BR /&gt;IPI&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2020 12:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75615#M28220</guid>
      <dc:creator>CraigFarley</dc:creator>
      <dc:date>2020-03-24T12:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75616#M28221</link>
      <description>Hi Craig, and thanks for the reply!&lt;BR /&gt;&lt;BR /&gt;Our Chrome versions are under control of our PlatEng group, and is updated as part of automatic roll-outs. It appears that we are currently on&amp;nbsp;&lt;SPAN&gt;Version 80.0.3987.132 ( version that is not even listed yet in the table you referenced.)&amp;nbsp; The Blue Prism version we are using is 6.6 - which appears to have been certified with&amp;nbsp;76.0.3809.132 Chrome.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So if i understand the table correctly we should upgrade to 6.7 if we want better compatibility&amp;nbsp;with current Chrome? keep up with versions and addressing incompatibilities is becoming&amp;nbsp;&amp;nbsp;full time job &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Arkady&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Arkady Dudko&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2020 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75616#M28221</guid>
      <dc:creator>adudko</dc:creator>
      <dc:date>2020-03-24T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75617#M28222</link>
      <description>Thanks for weighing in , Dave. I am not really clear tho on what the "intelligent Wait" is and hot to implement.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Also what we are finding is the issues appear to manifest themselves differently on different machines. We have switched to using UI Automation mode , and is seems to behave more reliantly as opposed to Browser Mode.&amp;nbsp; However the challeng with switching to UI Automation mode is that identifying elements on the page may not be as easy and dependent on&amp;nbsp; how developers designed specific web pages, as them may be inconsitent.&lt;BR /&gt;&lt;BR /&gt;-Arkady&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Arkady Dudko&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2020 14:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75617#M28222</guid>
      <dc:creator>adudko</dc:creator>
      <dc:date>2020-03-24T14:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Element in Chrome not found</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75618#M28223</link>
      <description>Hi Arkady&lt;BR /&gt;&lt;BR /&gt;In my experience, we've had a lot of similar issues. Even if you upgrade to 6.7 you may find that Chrome then updates to a newer, unsupported version so it will be tricky to keep up unless you can grant an exclusion to that policy on the interactive clients and runtimes. Ideally you would run a browser on those machines that didn't update and could be kept secure by only visiting trusted websites.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Craig Farley&lt;BR /&gt;Partner Apps Manager&lt;BR /&gt;IPI&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2020 14:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Element-in-Chrome-not-found/m-p/75618#M28223</guid>
      <dc:creator>CraigFarley</dc:creator>
      <dc:date>2020-03-24T14:08:00Z</dc:date>
    </item>
  </channel>
</rss>

