I need to extract the information from TE website. The data include the fields and the table shown in the picture.
I read some example code to extract the data from website using VBA in Excel, like this one for example Stackoverflow's Example. I understand some but I cannot find how to adapt into my problem.
There are some comments I found that I will need to know some HTML to do it - but I have no clue how.
I tried to look into the code of the page then I found the information hidden but still hard to have some thoughts about extracting these fields.
<span class="te-search-gallery-family">2.5mm Signal Double Lock Connector</span>
<span class="te-search-gallery-desc">2.5 SIGNAL D/LOCK PLUG HSG 11P</span>
and
<th class="first-cell"> Product Type</th>
<th> Connector Type</th>
<th> Connector Style</th>
<th> Product Line</th>
<th> Centerline</th>
<th> Application Use</th>
<th> Applies To</th>
<th> Wire/Cable Type</th>
<th> Contact Type</th>
<th class="last-cell"> Number of Positions</th>
</tr>
</thead>
<tbody>
<tr>
<td class="first-cell"> Connector</td>
<td> Housing</td>
<td> Plug</td>
<td> 2.5mm Signal Double Lock</td>
<td> 2.50 mm [0.098 in]</td>
<td> Wire-to-Wire</td>
<td> Wire/Cable</td>
<td> Discrete Wire</td>
<td> Socket</td>
<td class="last-cell"> 11</td>
</tr>