Adagio
8 years agoFrequent Contributor
'process not accessible' error
Hello,
I'm trying to read the text in a column of a table using the following, but I keep getting 'Process Not Accessible' error.
what's could be the reason and what's this related to? any help would be appreciated.
function getRowIndex(){
if(dataTable.Cell(0, 1).Exists){
for(var i = 0; i < dataTable.RowCount ; i ++){
Log.Message("Total rows in the table: " +dataTable.RowCount);
dataTable.Cell(i, 2).TextNode("locnClass").scrollIntoViewIfNeeded();
if(equal(dataTable.Cell(i, 2).TextNode("locnClass"), "Match")){
return i;
}
}
return false;
} else{
return false;
}
} Thank you
Abhi