I need to extract the information from a table with selenium, python.
Cuepo html:
<table class="table table-bordered">
<tbody>
<tr>
<td>Valor de la Prima</td>
<td style="text-align: right;">$ 1.176.256</td>
</tr>
<tr>
<td>IVA</td>
<td style="text-align: right;">$ 223.489</td>
</tr>
<tr>
<td><strong>Total Prima</strong></td>
<td style="text-align: right;"><strong>$ 1.399.745</strong></td>
</tr>
</tbody>
</table>
There are two tables with the same class, the first and this one to which I want to extract information.
I had a code but with beautiful and they recommended me better to do it with selenium directly.
Thanks