Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
I'm surfing a web site and grasping data.
Now, I'm tinkering with a table.
Its name is:
The body is structured as follows:
The table can have an indefinite number of rows.
I need to click In the row containing the code "A3", "A4" or "A27", to download the corresponding records.
How can I loop in this table and perform the task?
Thank's in advance for your support.
I'm surfing a web site and grasping data.
Now, I'm tinkering with a table.
Its name is:
HTML:
id="tbl1"
The body is structured as follows:
HTML:
<tbody>
<tr class="Row" id="tbl1__0">
<td align="center">A1</td><td>xxxx</td><td>66</td><td>0</td>
</tr><tr class="AltRow" id="tbl1__1">
<td align="center">A3</td><td>yyyy</td><td>4</td><td>0</td>
</tr><tr class="Row" id="tbl1__2">
<td align="center">A4</td><td>zzzz</td><td>151</td><td>0</td>
</tr><tr class="AltRow" id="tbl1__3">
<td align="center">A7</td><td>wwww</td><td>1</td><td>0</td>
</tr><tr class="Row" id="tbl1__4">
<td align="center">A8</td><td>nnnn</td><td>395</td><td>0</td>
</tr><tr class="AltRow" id="tbl1__5">
<td align="center">A9</td><td>rrrr</td><td>1</td><td>0</td>
</tr><tr class="Row" id="tbl1__6">
<td align="center">A10</td><td>ssss</td><td>239</td><td>0</td>
</tr><tr class="AltRow" id="tbl1__7">
<td align="center">A13</td><td>dddd</td><td>67</td><td>0</td>
</tr>
</tbody>
The table can have an indefinite number of rows.
I need to click In the row containing the code "A3", "A4" or "A27", to download the corresponding records.
How can I loop in this table and perform the task?
Thank's in advance for your support.