<?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 Need an explanantion of Read Table using cell reference of Webpage in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97759#M45690</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;Can anyone explain the workflow of the following concept. I am a bit confused how to implement.&lt;BR /&gt;&lt;BR /&gt;Link: &lt;A href="https://bptravel.blueprism.com/results.html" target="_blank" rel="noopener"&gt;BP Travel - Search Results (blueprism.com)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35571.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37440i2272E1D4BCD0EEF0/image-size/large?v=v2&amp;amp;px=999" role="button" title="35571.png" alt="35571.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35572.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37441iEB7D1661EC7180A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="35572.png" alt="35572.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 06 May 2023 21:01:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-05-06T21:01:53Z</dc:date>
    <item>
      <title>Need an explanantion of Read Table using cell reference of Webpage</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97759#M45690</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Can anyone explain the workflow of the following concept. I am a bit confused how to implement.&lt;BR /&gt;&lt;BR /&gt;Link: &lt;A href="https://bptravel.blueprism.com/results.html" target="_blank" rel="noopener"&gt;BP Travel - Search Results (blueprism.com)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35571.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37440i2272E1D4BCD0EEF0/image-size/large?v=v2&amp;amp;px=999" role="button" title="35571.png" alt="35571.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35572.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37441iEB7D1661EC7180A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="35572.png" alt="35572.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 21:01:53 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97759#M45690</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-06T21:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need an explanantion of Read Table using cell reference of Webpage</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97760#M45691</link>
      <description>&lt;P&gt;Hi Ekram Shihab,&lt;BR /&gt;&lt;BR /&gt;Based on the BP travel screen and code snippet - the code is trying to read each cell value at a time&lt;BR /&gt;&lt;BR /&gt;Before going to the step1 mentioned in the bp travel screenshot&lt;BR /&gt;If you look in to the Below screenshot&lt;BR /&gt;a) TD(1), TD(2)...... in html path it represents standard data cell/column(refer&amp;nbsp; - "&lt;A href="https://www.w3schools.com/TAGS/tag_td.asp" target="_blank" rel="noopener"&gt;HTML td tag (w3schools.com)&lt;/A&gt;")&lt;BR /&gt;b) TR(1),TR(2) .... in html path represent row&lt;BR /&gt;in order to read each cell in a table need to iterate each column and each row(i.e each cell in a table&amp;nbsp; to get the value)&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35567.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/35604iF078EE6F20D5242B/image-size/large?v=v2&amp;amp;px=999" role="button" title="35567.png" alt="35567.png" /&gt;&lt;/span&gt;&lt;BR /&gt;as mentioned to read each cell - we need to read each cell at a time by giving row and column value appropriatley&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Initializing Current row and Current column values are zero&lt;BR /&gt;Step1:Add 1(Current Row +1) to the current Rowvalue&lt;BR /&gt;Current Row Values will be&amp;nbsp; chnaged to "1" from zero.&lt;BR /&gt;Step2: Add1 (current column +1_ to the current COlumn data Item.&lt;BR /&gt;Current column value will be chnaged to zero from 1&lt;BR /&gt;Stpe3:&amp;nbsp; Assuming one of the cell value was already spied and make the html/web path selectd as dynamic value in app modeller - Need to append the row and column value in the html path appropriately -&amp;nbsp; this step will actually read the cell value&lt;BR /&gt;&lt;BR /&gt;The above steps will repeat until no more columns and rows exits in the table.&amp;nbsp; in thhe it will throw exception and resume then eventually navigate to the end stage.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 06:14:10 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97760#M45691</guid>
      <dc:creator>harish.mogulluri</dc:creator>
      <dc:date>2023-05-07T06:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need an explanantion of Read Table using cell reference of Webpage</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97761#M45692</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="a1364716-b40d-4af9-81ad-3fc4498d485b" data-tag-text="Harish M"&gt;@Harish M,&amp;nbsp;&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thank you very much for your explanation. I have some other confusions. What happens in the yellow highlighted stages of the workflow? Can you explain a little bit about that?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can create the same workflow and share it with me. Then I can take a look at it.&lt;/P&gt;
&lt;P&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="a1364716-b40d-4af9-81ad-3fc4498d485b" data-tag-text="Harish M"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35568.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37439iB96076F0601A1829/image-size/large?v=v2&amp;amp;px=999" role="button" title="35568.png" alt="35568.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 10:16:01 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97761#M45692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-07T10:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need an explanantion of Read Table using cell reference of Webpage</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97762#M45693</link>
      <description>&lt;P&gt;Hi Ekram Shihab,&lt;BR /&gt;&lt;BR /&gt;In this screenshot set Row Added Value was False - If this flag is True then we are using coll&amp;nbsp; VBO, Action- "Add rows"&lt;BR /&gt;Here we are looping each row one at a time and set the Flag Row added as False to avoid adding multiple rows in the collection.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35569.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/35608i16D9015942FE947F/image-size/large?v=v2&amp;amp;px=999" role="button" title="35569.png" alt="35569.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;2) Inthe below screen shot&amp;nbsp; Add rows result is False&amp;nbsp; then we are adding the row in the result collection&amp;nbsp; using COll - Add rows and&amp;nbsp; set the Row added Flag as True&lt;BR /&gt;and loop each column(Row added flag was true that mean it will not add adiitional row till it completes all the values in the coll) in that particular row in the bp travel site&amp;nbsp; and&amp;nbsp; read the value and store in the collection&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="35570.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/35606i9F852242EB6C73C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="35570.png" alt="35570.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;In short &lt;BR /&gt;Row added Flag was used to avoid adding multiple rows in a collection when we are reading each column value in a row&lt;BR /&gt;Add Row to result is adding row in to coll - result&amp;nbsp;&lt;BR /&gt;Set ROw/COlumn value was actually reading each cell value.&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 15:28:33 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Need-an-explanantion-of-Read-Table-using-cell-reference-of/m-p/97762#M45693</guid>
      <dc:creator>harish.mogulluri</dc:creator>
      <dc:date>2023-05-07T15:28:33Z</dc:date>
    </item>
  </channel>
</rss>

