Ask a Question

Unable to access HTML Table rows and cells in Test Script

SOLVED
mgurch56
New Contributor

Unable to access HTML Table rows and cells in Test Script

Hi,

 

I am writing a TestComplete script (in JavaScript) to verify that the rows and cols in a HTML table on a page contain the right values.

 

What I've done so far is something like this:

 

let test_table = page.NativeWebObject.Find(<"the table's html info">);

 

if(test_table.Exists)

{

   Log.Message(test_table.rows.length);

   Log.Message(test_table.rows[0]);

}

 

My code makes it to the if statement, and logs the amount of rows, but when it tries to log the first row it says it is undefined.

 

Same thing happens if I try something like test_table.rows[0].innerHTML or test_table.rows[0].cells[0].innerHTML.

 

Does anybody know how to access the rows and cells data in a given HTML table?

 

Thanks,

 

Mike

2 REPLIES 2

Thank you!

 

Looks like I was using the wrong syntax, silly me! 😅

cancel
Showing results for 
Search instead for 
Did you mean: