03-23-2016, 12:47 PM
Hi Saket,
for one of my scripts, I have tried using the same script as mentioned below:
1. get the row where your required text is there in the table using GetRowWithCellText
nRow =B().P().F().WebTable().GetRowWithCellText("AR1100000113")
2. set an object to the webelement of the row and required column
Set oElem = B().P().F().WebTable().childitem(nRow,4,"WebElement",0)
3. Click on webelement
oElem.Click
But then, its throwing "Object Required" error.
May I know, if I have missed anything here
for one of my scripts, I have tried using the same script as mentioned below:
1. get the row where your required text is there in the table using GetRowWithCellText
nRow =B().P().F().WebTable().GetRowWithCellText("AR1100000113")
2. set an object to the webelement of the row and required column
Set oElem = B().P().F().WebTable().childitem(nRow,4,"WebElement",0)
3. Click on webelement
oElem.Click
But then, its throwing "Object Required" error.
May I know, if I have missed anything here