Can we get more information on a cells data other than just the shown information?
Currently, I have:
But is it possible to return if the cell is: visible, htm id, etc?
I am trying to do a If FaxStatus = value Then Higlight
I tried:
But I get the Run Error: "Object required a"
Currently, I have:
Code:
FaxStatus = TableObj.GetCellData(3,1)
But is it possible to return if the cell is: visible, htm id, etc?
I am trying to do a If FaxStatus = value Then Higlight
I tried:
Code:
set a = Browser("Fax Request").Page("Page").WebTable("Fax Status").ChildItem(3,1,"WebElement", 1)
b= a.GetROProperty("abs_x")
But I get the Run Error: "Object required a"