Hi
Sorry for not reading your message properly. If you are trying to access the checkbox in the webtable "inboxtable", then please try the below script and let me know if it won't work.
Sorry for not reading your message properly. If you are trying to access the checkbox in the webtable "inboxtable", then please try the below script and let me know if it won't work.
Code:
Set inboxtable = Description.Create
inboxtable("micclass").Value="WebTable"
inboxtable("text").Value="^Inbox.*$"
set WebEdits=Browser("name:=^.*Yahoo.*$").Page("title:=^.*Yahoo.*$").ChildObjects(inboxtable)
If (WebEdits.Count>0) Then
row = WebEdits(0).GetRowWithCellText(strSubject)
Set checkbox = WebEdits(0).ChildItem(row,1,"WebCheckBox",0)
checkbox.Set "ON"
End If