Forum Discussion
msap
7 years agoFrequent Contributor
RowIndex = Grid2.FindRowByMultipleValues(Columns, Values);
i changed the 2nd lin too :
Values=new Array(COUNTRY,asa);
instead Values=new Array("COUNTRY","asa");
i tried this , still gives an error Unable to find the object FindRowByMultipleValues(null, null).
SaravanaKumar_N
7 years agoContributor
No, while declaring the variables, the values should be within the quotes...
Columns= new Array ("param1","param2");
Values=new Array("SUB","TEST");
But while finding, if you are using a variable name, avoid using the quotes...
RowIndex = Grid2.FindRowByMultipleValues(Columns, Values);
TestComplete manual has vast examples... the below is for Find method.
You can also refer w3school for JavaScript help...