I need to get the cell type or value property in a Webtable by specifying the row and column. GetROproperty can give the value but row/column cannot be specified.
2
votes
1 Answers
1
votes
When working with a WebTable there are two ways to get into the cell:
ChildItem: Allows you to specify a row and column of the cell and an object type so you can get an (for example)Linkthat is in the specified cell. Then with thatLinkobject in hand you can do whatever you want, includingGetROPropertyCell: Given a row and column, this returns theWebElementof theTDelement that represents the cell which you can then use as a regularWebElement