<?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: How to read a value from Web Page ? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52025#M6956</link>
    <description>Assuming you use chrome/firefox/edge (not IE html mode), you can use xpath to do it.&lt;BR /&gt;If value is in a separate tag around "PO Number", you use relative xpath, if it is same tag, then use contains..&lt;BR /&gt;For example, to find value near Recommend button in this page in the 3rd post, use xpath like: "(//a[text()='Recommend'])[3]/../a[1]"&lt;BR /&gt;To find "Posted x days ago" in second post you could do something like "(//span[starts-with(.,'Posted') and contains(.,'days ago')])[2]"&lt;BR /&gt;&lt;BR /&gt;In your case it might look like: "//div[text()='PO Number']/../div[2]", can't tell without looking at your html.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Andrey Kudinov&lt;BR /&gt;Project Manager&lt;BR /&gt;Europe/Moscow&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 28 Apr 2021 15:04:00 GMT</pubDate>
    <dc:creator>AndreyKudinov</dc:creator>
    <dc:date>2021-04-28T15:04:00Z</dc:date>
    <item>
      <title>How to read a value from Web Page ?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52022#M6953</link>
      <description>&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope everyone is safe &amp;amp; secure !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I read a data from a web page using Code Stage ?&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Data I mean to say, Suppose against "PO Number" 12345 is present. So I want to read 12345.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kindly assist.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Madhu Garg&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2021 19:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52022#M6953</guid>
      <dc:creator>MadhuGarg</dc:creator>
      <dc:date>2021-04-23T19:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to read a value from Web Page ?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52023#M6954</link>
      <description>Hi Madhu,&lt;BR /&gt;Can I ask why are you not reading data using any of the spying modes(AA/html)?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aloknath Singh&lt;BR /&gt;Senior RPA Developer&lt;BR /&gt;Jaguar Land Rover&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;917021429197&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Apr 2021 12:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52023#M6954</guid>
      <dc:creator>AloknathSingh</dc:creator>
      <dc:date>2021-04-24T12:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to read a value from Web Page ?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52024#M6955</link>
      <description>Hi Aloknath,&lt;BR /&gt;&lt;BR /&gt;I am able to read the data using AA/html mode. But problem with the html mode is that the "TR" value which we used to make dynamic is not in sync with other TR values. So we are unable to make it Dynamic.&lt;BR /&gt;Problem with the AA mode is it takes a long time to read &amp;amp; sometimes it terminates the complete Blue Prism application itself.&lt;BR /&gt;&lt;BR /&gt;So i thought to apply the Code Stage to resolve.&lt;BR /&gt;Kindly assist.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Madhu Garg&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Apr 2021 12:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52024#M6955</guid>
      <dc:creator>MadhuGarg</dc:creator>
      <dc:date>2021-04-24T12:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to read a value from Web Page ?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52025#M6956</link>
      <description>Assuming you use chrome/firefox/edge (not IE html mode), you can use xpath to do it.&lt;BR /&gt;If value is in a separate tag around "PO Number", you use relative xpath, if it is same tag, then use contains..&lt;BR /&gt;For example, to find value near Recommend button in this page in the 3rd post, use xpath like: "(//a[text()='Recommend'])[3]/../a[1]"&lt;BR /&gt;To find "Posted x days ago" in second post you could do something like "(//span[starts-with(.,'Posted') and contains(.,'days ago')])[2]"&lt;BR /&gt;&lt;BR /&gt;In your case it might look like: "//div[text()='PO Number']/../div[2]", can't tell without looking at your html.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Andrey Kudinov&lt;BR /&gt;Project Manager&lt;BR /&gt;Europe/Moscow&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Apr 2021 15:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-a-value-from-Web-Page/m-p/52025#M6956</guid>
      <dc:creator>AndreyKudinov</dc:creator>
      <dc:date>2021-04-28T15:04:00Z</dc:date>
    </item>
  </channel>
</rss>

