Solved
Forum Discussion
JackSparrow
10 years agoFrequent Contributor
There is no'plus' to the left of the line in the TestComplete Test Log.But when i checked in the Additional info it was showing the values , now i can read a single column value and based on that i need to read the entire row values stored in diff param's .Can you please help me out
joseph_michaud
Staff
10 years agoAssuming your image somehow corresponds to your COM automation example, then the answer is to not concatenate your column values together:
for k in range (5 , TSCols):
TSData = TSData & TSSheet.cells(j,k).Value & ";"
- JackSparrow10 years agoFrequent Contributor
Hi joseph_michaud for the COM automation am facing an python run-time error "the method is not callable " at the line which is in Red Font .