4
I’m racking my brain to find the Xpath of a table
. You could help me?
The structure is more or less like this:
<div>
<div id="divMF">
<iframe name="Principal>
<frameset id="frmset">
<frame name="corpo">
<form name = "frmConsulta">
<div id ="estrutura">
<div id = "menos50">
<div id = "idtable">
Could someone help me?
If it’s XHTML it could be up to
//*[@id='idtable']
since id uniquely identifies the component.– helderdarocha