Hey, i hope someone can point me in the right direction, i have a page with tables, inside i have TD,TR,INPUT tags, the input tags is buttons and i need to click on one of theese buttons but they have the same value and type so the only way that i am going to know that it's the correct button is to find out the name of the innerhtml of the TD before (the parent node) because the input comes after, like this
<TABLE>
<TR>
<TD> Name of the td </TD>
<TR>
<TD colSpan=3<INPUT> value=my button type=button</INPUT></TD>
<TR>
<TD> Other name of a td </TD>
<TR>
<TD colSpan=3<INPUT> value=my button type=button</INPUT></TD>
<TR>
I know how to find all td's and inputs but not (in a loop) look for the td's and once it has found it click on the corresponding or "closest" input, maybe a nested loop?
I made a for loop using _IETagnameGetCollection($ie,"TD") and after it found the TD i tried looking for nextSibling but that might be impossible with INPUT perhaps?