ContributionsMost RecentMost LikesSolutionsTest complete Desktop Application Python - Not able to append elements to a list Hi Team, I'm using test complete for desktop automation using python programming language. Suppose, just say there is a elements which needed to be added into list. When i try append elements into a list and then try to print it.It is returning empty. #sample code def main(): list = [] element = "apple" list.append(element) print(list) Expected Output: ['apple'] Actual Output: empty Note: Same is the case when on using insert,append,add SolvedHow can we write dynamic WPF object for common desktop elements Hi Team, In my desktop application, i have list of already created users.How can i write a common WPF object ,So that i can locate any user just by sending username as text to it. Is it possible? Thanks