Forum Discussion

joscva's avatar
joscva
Contributor
2 months ago
Solved

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:

  1. Check box in row n
  2. Uncheck box in row n
  3. Increment counter
  4. Check box in row n+1
  5. Uncheck box in row n+1
  6. Increment counter
  7. 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.

5 Replies

  • 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.

    • joscva's avatar
      joscva
      Contributor

      Yes, refreshing is exactly what I was trying to figure out how to do.  How do I do this in a keyword test?

      • joscva's avatar
        joscva
        Contributor

        Got it!  This was all I needed in a code snippet.

        Aliases.TESTED_APPLICATION.RefreshMappingInfo()

        Thanks for steering me to it!