<?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: Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125384#M54576</link>
    <description>&lt;P&gt;Thank you, Omar-Abu-Snineh, for understanding the issue and for sharing your suggestions. We are currently following the same approach you outlined in part 1. For part 2, we are using the Clipboard alongside send keys, and we are also working on implementing region mode wherever possible by standardizing the screen.&lt;/P&gt;&lt;P&gt;We are coordinating with the application team on this issue, as there are several automation opportunities lined up for this application. Thanks again.&lt;/P&gt;</description>
    <pubDate>Wed, 29 Apr 2026 11:01:14 GMT</pubDate>
    <dc:creator>Akshay_MMC</dc:creator>
    <dc:date>2026-04-29T11:01:14Z</dc:date>
    <item>
      <title>Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125245#M54531</link>
      <description>&lt;DIV&gt;Hi Team,&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;We are currently working on a Windows-based application. During spying, we noticed that the Windows spy mode only works on the main window and not on any other elements. Although we are correctly attaching to the running application, UIA spy mode successfully retrieves the UIA Name for some elements like label texts. However, for certain elements on the same window, the UIA Name is blank despite the elements having visible values (please refer to the attached screenshot).&lt;/DIV&gt;&lt;DIV&gt;Could you please guide us on what might be causing the spy mode to fail in extracting the display values of&lt;BR /&gt;these elements during spying?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-04-08 202258.png" style="width: 485px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/42151iFA25377464E1DB91/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-04-08 202258.png" alt="Screenshot 2026-04-08 202258.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Apr 2026 15:05:05 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125245#M54531</guid>
      <dc:creator>Akshay_MMC</dc:creator>
      <dc:date>2026-04-08T15:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125247#M54533</link>
      <description>&lt;P&gt;Hi, this looks pretty standard to me. In my opinion, the root cause of the difficulty of automating desktop applications in Blue Prism comes down to that it does not have the concept of selectors that span multiple elements and/or the concept of anchors such as being able to target an ancestor/parent and then click on a child of it. Browser mode, surface automation, and Smart Vision don't have this issue as they do have that capability. I imagine Blue Prism intends to improve this in the future, but I've never come across a real solution to this. There are some workarounds that you could try.&lt;/P&gt;&lt;P&gt;Here are some things that I and other developers have tried in scenarios like this:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Verify that the parent attributes also don't have values in the UIA element. I assume you already checked this so I expect this won't help.&lt;/LI&gt;&lt;LI&gt;Try AA (Active Accessibility) as this quite frequently for me does have attributes filled in when UIA does not.&lt;/LI&gt;&lt;LI&gt;Find a given element by tabbing from a known element that Blue Prism can uniquely find. For example, if you can have BP find the label of the combo box, then you could have Blue Prism click/select the label and then you send TAB which would select the combo box and then you send keys to select the right value.&lt;/LI&gt;&lt;LI&gt;Use Match Index to uniquely identify the target element. This is generally not good practice, but sometimes you just don't have any other choice. The way I usually handle this while being safe is to have extra logic before interacting to make sure the rest of the screen is in the standard state. For example, I might check to see that the expected label is still the nth index or check how many children there are of the parent element (the window) or anything else that seems possible just to sanity check that the window is still designed like it was when you spied it originally, and then just move forward with Match Index.&lt;/LI&gt;&lt;LI&gt;Use Surface Automation. This is actually quite good in some apps. Everyone will rightly tell you to stay away from using it unless you absolutely have to. As I said, they are right to do so. However, I have had an automation running for like 6 years that depends solely on Surface Automation for automating a desktop app that is inside an RDP session, and it hasn't needed a change in years. If the app is stable, this could work perfectly for you.&lt;/LI&gt;&lt;LI&gt;Use Smart Vision. This is like an upgrade version of Surface Automation that is genuinely kind of amazing. I think it requires a special license so you may have to pay extra for it. I have absolutely no idea, and I only say this because I think it requires installing a license.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 15:41:09 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125247#M54533</guid>
      <dc:creator>david.l.morris</dc:creator>
      <dc:date>2026-04-08T15:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125250#M54536</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I have already checked the parent attribute, and it does not have a value.&lt;/LI&gt;&lt;LI&gt;We tried using AA, but the results are the same as with UIA Mode.&lt;/LI&gt;&lt;LI&gt;We attempted this approach, but it is not working since the labels are not being selected when clicked, and the Tab key does not move to the next field.&lt;/LI&gt;&lt;LI&gt;The match index helps us navigate from one field to the next, but we are facing an issue with reading the value (UIA Name="").&lt;/LI&gt;&lt;LI&gt;This was our last option, and we tried it using region mode, which works for some of the elements.&lt;/LI&gt;&lt;LI&gt;Obtaining a Smart Vision license is not an option for us at the moment.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 09 Apr 2026 06:46:46 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125250#M54536</guid>
      <dc:creator>Akshay_MMC</dc:creator>
      <dc:date>2026-04-09T06:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125383#M54575</link>
      <description>&lt;P&gt;Adding to what David has already mentioned, based on your update it seems that the issue is no longer only about identifying or navigating to the element, but specifically about the fact that the application is not exposing the displayed value through UIA or AA.&lt;/P&gt;&lt;P&gt;Since the parent attributes are also empty, AA gives the same result, and Match Index only helps with navigation but not with reading the value, this suggests that the value may be visually rendered on the screen without being published as an accessible property. In that case, Blue Prism can locate the control, but it cannot reliably read what the application itself does not expose through the automation layer.&lt;/P&gt;&lt;P&gt;At this point, I would separate the problem into two parts:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Interaction with the field&lt;/STRONG&gt;&lt;BR /&gt;If Match Index can reliably move from one field to another, it may still be useful for interacting with the screen, provided that additional validation is added before the action. For example, checking that the expected labels, window title, number of child elements, or screen layout are still consistent before proceeding.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Reading the displayed value&lt;/STRONG&gt;&lt;BR /&gt;If the value is not available in UIA, AA, parent attributes, or child attributes, then reading it through standard spying may not be feasible. In that case, the alternatives would be to retrieve the value from another source such as an export, clipboard behavior, application report, database, API, log file, or to use Region Mode/OCR where it is stable enough.&lt;/P&gt;&lt;P&gt;If Region Mode works for some elements, it may be worth standardizing the screen as much as possible before reading: fixed resolution, fixed zoom level, maximized window, consistent theme, and controlled RDP/session settings. This can make image-based extraction more reliable, although it should still be treated as a fallback rather than the preferred approach.&lt;/P&gt;&lt;P&gt;The most robust long-term solution would be to involve the application team and ask whether these controls can expose proper accessibility properties, such as Name, Value, Automation ID, or accessible text. Without that, Blue Prism may not have a dependable technical handle to read those values directly.&lt;/P&gt;&lt;P&gt;So in short, I agree with David’s points, but based on your findings, this looks less like a Blue Prism spying configuration issue and more like an application accessibility/exposure limitation. Blue Prism can only consume the properties made available by the target application; if the display value is only visually painted and not exposed through UIA/AA, then a workaround or an application-side change would likely be required.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 10:45:37 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125383#M54575</guid>
      <dc:creator>Omar-Abu-Snineh</dc:creator>
      <dc:date>2026-04-29T10:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with UIA Spy Mode Not Extracting Element Display Values in Windows Application</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125384#M54576</link>
      <description>&lt;P&gt;Thank you, Omar-Abu-Snineh, for understanding the issue and for sharing your suggestions. We are currently following the same approach you outlined in part 1. For part 2, we are using the Clipboard alongside send keys, and we are also working on implementing region mode wherever possible by standardizing the screen.&lt;/P&gt;&lt;P&gt;We are coordinating with the application team on this issue, as there are several automation opportunities lined up for this application. Thanks again.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 11:01:14 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-with-UIA-Spy-Mode-Not-Extracting-Element-Display-Values-in/m-p/125384#M54576</guid>
      <dc:creator>Akshay_MMC</dc:creator>
      <dc:date>2026-04-29T11:01:14Z</dc:date>
    </item>
  </channel>
</rss>

