Forum Discussion
I can't do screen shots because it is a classified environment but the page essentially looks like this:
1. Text
1.(a) Text
1.(b) Text
2. Text
And this continues for 250+ steps. The HTML looks something like:
<div class="step-label">1.</div>
<div class="step-text">Text</div>
So I can't read everything at one time. So I read all the step labels at one time and then go back and get each step text and compare it against our verification data.
Our software has a hard timeout and TestComplete can't complete reading the step labels before the software times out.
You could use the FindAll method to retrieve all elements that match your criteria. Or, if your hierarchy structure is deep, then it might be best to export innerHTML to a file, and then perform the necessary checks.