Forum Discussion

Rajesh2's avatar
Rajesh2
Contributor
8 years ago
Solved

Can anyone please help me with using Tuples in TestComplete with Python

Hi,   I need to fetch the testcases based on the ExecutionFlag(Y/N) from Excel   I need to store the testcases which have ExecutionFlag="Y" and store it in Array.   Now i need to create a loop ...
  • baxatob's avatar
    baxatob
    8 years ago

    This should work:

     

    A = get_test_suite(test_case_container)
    Log.Message(str(A[0]))

    as well as this:

     

    A = [get_test_suite(test_case_container)]
    Log.Message(str(A[0][0]))