I have a SilkTest DomElement object, and I need to get the HTML tag associated to this DomElement. How can I do this? Thanks.
// Silk4J
DomElement column = row.getCell(i);
if (???) {
// TD case
} else {
// TH case
}
I may need it for others HTML tags too.