<?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: Unable to SPY an IE popup in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50674#M5870</link>
    <description>HI Mitsuko san&lt;BR /&gt;&lt;BR /&gt;I had the same issue.&lt;BR /&gt;Thanks to your advice , I managed to spy IE popup.&lt;BR /&gt;&lt;BR /&gt;Thank you so much.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;-----------------------------&lt;BR /&gt;SCSK corporation&lt;BR /&gt;BluePrism Developer&lt;BR /&gt;Bazarsuren Odbileg&lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 24 Apr 2020 08:48:00 GMT</pubDate>
    <dc:creator>BazarsurenOdbil</dc:creator>
    <dc:date>2020-04-24T08:48:00Z</dc:date>
    <item>
      <title>Unable to SPY an IE popup</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50671#M5867</link>
      <description>I am building a process for my team using Blue Prism. For one of the internal web application processes that I am trying to automate, I am presented with a popup from IE. The popup is simply an "OK" or "Cancel" button option asking if I am sure that I want to save the changes I am making. For some reason I am not able to SPY the elements on the popup and am only identifying the identifiable items from the original page. Can anyone step me through how to work around this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;-Vincent Watkins&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Apr 2020 18:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50671#M5867</guid>
      <dc:creator>VincentWatkins</dc:creator>
      <dc:date>2020-04-08T18:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Unable to SPY an IE popup</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50672#M5868</link>
      <description>Hi Vincent,&lt;BR /&gt;&lt;BR /&gt;Have you tried changing the Spy mode specifically for that Window? Perhaps you could spy it in Win32 mode?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Apr 2020 15:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50672#M5868</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-04-09T15:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: Unable to SPY an IE popup</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50673#M5869</link>
      <description>&lt;P&gt;Hi Vincent,&lt;BR /&gt;&lt;BR /&gt;Do you know how to manipulate IE popup by VBA?&lt;/P&gt;
&lt;P&gt;If you know,&amp;nbsp;the operation method using VBO is similar to the operation method using VBA.&lt;BR /&gt;&lt;BR /&gt;this is VBA sample code:&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;Private  Declare PtrSafe  Function PostMessage  Lib  &lt;SPAN class="token string"&gt;"user32"&lt;/SPAN&gt;  Alias  &lt;SPAN class="token string"&gt;"PostMessageA"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;ByVal hwnd  As LongPtr&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  ByVal wMsg  As  Long&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  ByVal wParam  As LongPtr&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  ByVal lParam  As LongPtr&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;  As  Long
Declare PtrSafe  Function FindWindow  Lib  &lt;SPAN class="token string"&gt;"User32.dll"&lt;/SPAN&gt;  Alias  &lt;SPAN class="token string"&gt;"FindWindowA"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;ByVal lpClassName  As  String&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  ByVal lpWindowName  As  String&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;  As  Long

Sub &lt;SPAN class="token function"&gt;ClickPopup&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;

     Dim hwnd  As  Long
    hwnd &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FindWindow&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"#32770"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  &lt;SPAN class="token string"&gt;"Message from webpage"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;

     If hwnd &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;gt;&lt;/SPAN&gt;  &lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;  Then
        PostMessage hwnd&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;H111&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; vbOK&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;  &lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;
     End  If

End  Sub&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;- create another VBO for popup&lt;BR /&gt;- spy popup in the same way as the parent IE window&lt;BR /&gt;- create attach action for popup&lt;BR /&gt;&amp;nbsp; &amp;nbsp;when attach popup,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;- set "1" to "Child Index"&lt;BR /&gt;&amp;nbsp; &amp;nbsp;- set "Message from webpage" to "Window Title"&lt;BR /&gt;&lt;BR /&gt;Then you spy OK or Cancel button in IE popup, "Parent Class Name" is "#32770".&lt;BR /&gt;If you create VBO for popup in this way, it can be used for other IE windows, as they do not depend on what the IE's parent window is.&lt;BR /&gt;&lt;BR /&gt;hope this suggestion helps you&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mitsuko &lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Apr 2020 00:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50673#M5869</guid>
      <dc:creator>sumire</dc:creator>
      <dc:date>2020-04-10T00:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: Unable to SPY an IE popup</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50674#M5870</link>
      <description>HI Mitsuko san&lt;BR /&gt;&lt;BR /&gt;I had the same issue.&lt;BR /&gt;Thanks to your advice , I managed to spy IE popup.&lt;BR /&gt;&lt;BR /&gt;Thank you so much.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;-----------------------------&lt;BR /&gt;SCSK corporation&lt;BR /&gt;BluePrism Developer&lt;BR /&gt;Bazarsuren Odbileg&lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Apr 2020 08:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-SPY-an-IE-popup/m-p/50674#M5870</guid>
      <dc:creator>BazarsurenOdbil</dc:creator>
      <dc:date>2020-04-24T08:48:00Z</dc:date>
    </item>
  </channel>
</rss>

