ContributionsMost RecentMost LikesSolutionsHow to run TestLeft tests in CICD with an access key Here it's explained how to run TestExecute specifying the access key, but I need to know how to run TestLeft tests with an access key. https://support.smartbear.com/testexecute/docs/licensing/id-based/automated-builds.html?sbsearch=access%20key Is it documented anywhere? Problem with RestSharp reference In my project where I am referencing TestLeft nuget pacakge I am also referencing another nuget package that has a dependency to RestSharp 106.11.4. When I create an instance of a `LocalDriver` I get the following error: "System.MissingMethodException: 'Method not found: 'System.Object RestSharp.Extensions.ReflectionExtensions.ChangeType(System.Object, System.Type, System.Globalization.CultureInfo)'.'" If I remove the depedency to this other nuget package everything is fine. How can I fix this? Are there any plans to replace RestSharp with a newer version? (the referenced one is 7 years old) Re: How to add WPF Composite Controls definitions to TestLeft UI Spy use Thank you Alex, I have seen it's actually already there.. https://community.smartbear.com/t5/TestLeft-Feature-Requests/TestLeft-s-UI-spy-should-remember-added-composite-controls/idi-p/170553 Re: TestLeft is not taking screenshots when events occurs. Is this really in? I have the same problem as the OP with TestLeft 14.10. TestLeft UI Spy not available in Visual Studio 2019 I have installed the latest TestLeft 14.10 version and the UI Spy window is not available in VS2019. The Extension is actually not installed. How can I fix this? Thank you! How to add WPF Composite Controls definitions to TestLeft UI Spy use The application I am testing has custom WPF User Controls and for TestLeft to further decompose them I am using the SetCompositeControls method. That is working fine, but I have a problem with TestLeft UI Spy as there is no way to specify those options to TestLeft UI Spy and I can't then really see how the VisualTree actually looks like in execution. Any suggestions? Thank you. Re: How to properly start a Windows service Thank you so much for your reply! It put me on the right track. Somehow I forgot that the whole .NET Framework is available for anything I have to do... Turns out the ServiceController class is exactly what I need. https://docs.microsoft.com/en-us/dotnet/api/system.serviceprocess.servicecontroller?view=netframework-4.7.2 Here's a concise example: https://stackoverflow.com/questions/11062841/start-stop-service-from-form-app-c-sharp How to properly start a Windows service My app under test has a Windows service that I need to start at the beginning of the test if it is not already started. I haven't found a way to do it in TestLeft API, so I am calling "sc.exe" directly with the following command: this.driver.Applications.Run($"sc", $"start {serviceName}"); It works mostly, but sometimes it throws the following exception: SmartBear.TestLeft.ApiException: The application 'sc' (PID 25376) exited with code 0 before the test engine could access it. What would be the best way to work with Windows services? I mostly need to start a service (and ideally wait for it to finish startup), stop it and also be able to check whether it is running. Thank you! SolvedBeing able to navitage down in objects with items or call methods with parameters within UI Spy In the UI Spy it is not possible to navigate down objects that have items because there is no way to specify parameters to properties or methods from the UI Spy. That was possible with TestComplete and was extremely helpful when debugging or discovering new objects in the visual tree. Show documentation for methods of Objects in UI Spy When selecting a method from an object in UI Spy tool, there is no way to know what parameters are expected for a given method. That was possible for TestComplete and was extremely useful. A descrition of the method or propery was displayed too.