Forum Discussion
YMinaev
Staff
14 years agoHi,
If your radio button is inside a table cell, it will be the cell's child. Get it via the cell's child object collection and click it.
For example:
If your radio button is inside a table cell, it will be the cell's child. Get it via the cell's child object collection and click it.
For example:
var btn = table.rows(some_index).cells(some_other_index).firstChild;
btn = table.Parent.Find("uniqueID", btn.uniqueID, 10);
btn.Click();