ContributionsMost RecentMost LikesSolutionsRe: System checks for Object for every test What is the exact error message you are receiving? If you are new to TestComplete, I suggest you read and understand https://support.smartbear.com/testcomplete/docs/testing-with/object-identification/index.html Re: Backticks in textboxes using the Keys command Read through https://www.reddit.com/r/WindowsHelp/comments/y0kc6m/windows_11possibly_changing_the_behaviour_of_my/?rdt=60568 and https://superuser.com/questions/132601/windows-apps-keep-switching-to-accented-text - it could be relating to how your OS is setup? Re: TestComplete cannot click item on popupmenu during playback Read through https://support.smartbear.com/testcomplete/docs/app-objects/specific-tasks/standard/menu/index.html which will give you better understanding. Re: mapped elements in headless mode does not return child elements Great! I think we should get paid for testing their software and finding bugs, as well as trying to test our own software :) Re: Newer versions, old license Not sure if there's anything in here https://support.smartbear.com/testcomplete/docs/licensing/index.html that will be able to answer your question, but personally, I would get in contact withSmartBear as they'll be able to provide you with a better answer. Re: desktop application using web elements You need to find out what technology your applications uses, either WebView2 and Chromium. WebView2 support does not work | SmartBear Community - someone had issues with WebView2. Re: Checking until a window doesn't exist No. You'll have to adjust the code to suit your needs, but this method works perfectly for my web testing. I use the code against a web "process dialog" - that's to delay the tests until the dialog appears, and then delay the test until the dialog disappears. Re: Checking until a window doesn't exist WaitProperty method will pause execution until the specified object property achieves the specified value or until the specified timeout elapses. For example, waiting until the property value Visible becomes False. object.WaitProperty("Visible", "false", 30000); Re: Create a UserFrom via a script This is new to me, but apparently you can create a UserForm in TC, via right clicking your project and selecting Add -> New Item -> User Forms You can find more information here, https://support.smartbear.com/testcomplete/docs/testing-with/advanced/user-forms/index.html Re: java.lang.NoClassDefFoundError error message when integrating with Selenium/Maven/TestNG project Is this able to help you - https://support.smartbear.com/testcomplete/docs/working-with/integration/unit-test-frameworks/index.html and https://support.smartbear.com/testcomplete/docs/working-with/integration/unit-test-frameworks/junit/running.html?