Friday, October 30, 2015

WebTable Row Click



More ofter than not, it is required to click a specific row in a WebTable. This click shall highlights entire specific row with all columns.

WebTable().ChildItem(row,column,micclass,index) simply doesn't work some time. An alternative to click the row is

Set Obj = Browser().Page().WebTable().Object.rows(row number)
Obj.Click

This might work as well.

Browser("B").Page("P").Frame("F").WebTable("T").Object.rows(i).cells(i).Click