Object ID won't change during test?
Something odd is going on and I need some assistance in making sense of it.
I need to iterate through a row of checkboxes in our application. Each one has a DataRow above it, with a number of the row it's in (in WPFControlOrdinalNo). This should make it easy to iterate through since I can just increment a counter for each row, and use that value as the value of the row.
I have this set up, and it works fine if I right click each unit of the test and run them individually:
- Check box in row n
- Uncheck box in row n
- Increment counter
- Check box in row n+1
- Uncheck box in row n+1
- Increment counter
- etc.
But, if I just hit Run on the test and let it loop, my variable increments as expected on each loop, but the next row is never selected. Row n's checkbox just gets selected and deselected, over and over. It's as if the variable isn't actually used until the test stops, explaining why every step works fine if I execute them manually.
Does anyone know how this would happen? I'm using a project variable since local variables don't seem to work for this as they are initially null values. Thanks in advance!
I understand that you are utilizing parameterized NameMapping for the row that is using the project variable value, and during run you increment such value.
I suggest for debug to use project Persistent Variables so you would see the saved value after each run, also I am sure you will need to invoke RefreshMappingInfo Method | TestComplete Documentation since you are updating the NameMapping variable during run.