<?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 extract text by google chrome element using javascript in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/extract-text-by-google-chrome-element-using-javascript/m-p/99178#M3147</link>
    <description>&lt;PRE class="tw-data-text tw-text-large tw-ta" data-placeholder="Tradução" data-ved="2ahUKEwieh5aHgfSEAxXoqpUCHUS2CJEQ3ewLegQIDhAU" dir="ltr"&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;Can anyone help me with extracting text from the chrome element using java script?&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;Can anyone help me with extracting text from the chrome element using java script? I can't find de text using application moddler.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;in the console of chrome develop I used this code:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;document.querySelector('body &amp;gt; h2').innerText&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36075.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36085iCD0C4E0CE22DC9E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="36075.png" alt="36075.png" /&gt;&lt;/span&gt;I need to colect this text and use in object on blueprism&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2024 14:56:16 GMT</pubDate>
    <dc:creator>TiagoFreitas</dc:creator>
    <dc:date>2024-03-14T14:56:16Z</dc:date>
    <item>
      <title>extract text by google chrome element using javascript</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/extract-text-by-google-chrome-element-using-javascript/m-p/99178#M3147</link>
      <description>&lt;PRE class="tw-data-text tw-text-large tw-ta" data-placeholder="Tradução" data-ved="2ahUKEwieh5aHgfSEAxXoqpUCHUS2CJEQ3ewLegQIDhAU" dir="ltr"&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;Can anyone help me with extracting text from the chrome element using java script?&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;Can anyone help me with extracting text from the chrome element using java script? I can't find de text using application moddler.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;in the console of chrome develop I used this code:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc" lang="en"&gt;document.querySelector('body &amp;gt; h2').innerText&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36075.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36085iCD0C4E0CE22DC9E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="36075.png" alt="36075.png" /&gt;&lt;/span&gt;I need to colect this text and use in object on blueprism&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 14:56:16 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/extract-text-by-google-chrome-element-using-javascript/m-p/99178#M3147</guid>
      <dc:creator>TiagoFreitas</dc:creator>
      <dc:date>2024-03-14T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: extract text by google chrome element using javascript</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/extract-text-by-google-chrome-element-using-javascript/m-p/123853#M4575</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/15023"&gt;@TiagoFreitas&lt;/a&gt;&amp;nbsp;- you can easily read the value from browser using javascript.&lt;/P&gt;&lt;P&gt;first, you have to identify body of the page /html/body&amp;nbsp;&lt;/P&gt;&lt;P&gt;next, you have to create the dummy element on browser by invoking javascript on /html/body element which you have identify in first step&lt;/P&gt;&lt;P&gt;next, you have to add value to that created dummy element&lt;/P&gt;&lt;P&gt;next, you have to identify that created dummy element using blueprism&amp;nbsp;&lt;/P&gt;&lt;P&gt;next, using read stage you can read the value&lt;/P&gt;&lt;P&gt;here is the javascript (which you can invoke ) , which will read the value from element and stores in rtext variable, then create the dummy element on browser , gives ID as Blueprism_JS and add the rtext variable value to that created element,&lt;/P&gt;&lt;P&gt;this element we can identify in application modeller and read the value using read stage.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function getValuefromElement(){
var rtext = document.querySelector("#brf").value;
var elementexists = document.getElementById("Blueprism_JS");

if (elementexists==null){

const mylabel = document.createElement("label");
mylabel.setAttribute("id","Blueprism_JS");
mylabel.innerHTML = rtext;

document.body.appendChild(mylabel);

}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 20:13:45 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/extract-text-by-google-chrome-element-using-javascript/m-p/123853#M4575</guid>
      <dc:creator>naveed_raza</dc:creator>
      <dc:date>2025-12-08T20:13:45Z</dc:date>
    </item>
  </channel>
</rss>

