Ajouter <td></td> en utilisant xpath
Salutation,
Je suis entrain d'�crire un petit script pour Greasemonkey et j'ai besoin d'une fonction qui me permet de faire �a
Description du probl�me:
Dans une page web a l'adresse Xpath
Code:
html/body/div[2]/div[5]/div[1]/div/table/tbody/tr
il ya un table sous cette forme:
Code:
1 2 3 4
| <tr>
<td></td>
<td></td>
</tr> |
Je veux ajouter l'�l�ment <td></td> pour la transformer en sa:
Code:
1 2 3 4 5
| <tr>
<td></td>
<td></td>
<td></td>
</tr> |
Comment puis-je faire cette fonction
merci