11-04-2009, 01:56 PM
Hi,
As per the object state mentioned i.e,
Browser-> Page -> WEbElement -> WebTable ->innertext.
Then it will comes like this
But ur code seems
Here u were capturing innertext directly from webelement instead of webtable
Finally after getting the cell value then use the Mid function to capture the required value from the cell
Try with this and let me know if u have any issues..
As per the object state mentioned i.e,
Browser-> Page -> WEbElement -> WebTable ->innertext.
Then it will comes like this
Code:
Browser("xxxX").Page("xxxxx").WebElement("xxxx").WebTable("xxxxxx").getcelldata(row,column)
But ur code seems
Code:
Browser("AES - CATS - Login >>").Page("Whitepaper Summary
Page_2").WebElement("Name:=WebTable.*").GetROProperty("innertext")
Here u were capturing innertext directly from webelement instead of webtable
Finally after getting the cell value then use the Mid function to capture the required value from the cell
Try with this and let me know if u have any issues..