ContributionsMost RecentMost LikesSolutionsRe: How to Check Clipboard of remote machine from TestLeft test code Found a solution with help of the payed support: - Get the IProcess Node of the application under test - Get it's Parent node (which is the Sys object) - use GetProperty<string>("ClipBoard") (which works for string content of the clipboard; didn't test yet for binary/image content). Thanks for your help anyway. Re: How to Check Clipboard of remote machine from TestLeft test code thanks. Did that, and got an idea as response to find the parent of the IProcess to get it's properties - still have to check out if that helps. Get Clipboard content While in TestComplete it was possible to get access to the ClipBoard Content using https://support.smartbear.com/testcomplete/docs/reference/test-objects/members/common-for-sys-desktop-pda/clipboard-property.html As far as I know that's not possible using TestLeft. It would be greate to enable this e.g. by supporting IDriver or IDesktop.ClipboardContent Re: How to Check Clipboard of remote machine from TestLeft test code Hi Alex, thanks for the fast response, but I don't think it's a solution. Of course I could implement something on the remote machine, but I guessed it's kind of a standard api of a system and a UI test should IMHO be able to check it as well. In TestExecute there is sys.Clipboard to get or set the content for that purpose, in TestLeft it's missing. I don't have an RDP session, just the REST api from TestLeft to TestExecute. How to Check Clipboard of remote machine from TestLeft test code I'd like to make sure the right content is copied to the clipboard in a TestLeft test When the Application under test (WPF application) is executed locally, this can be done with the following (C#) code snippet: string clipboard = string.Empty; Thread thread = new Thread(() => clipboard = System.Windows.Clipboard.GetText()); thread.SetApartmentState(ApartmentState.STA); thread.Start(); thread.Join(); Assert.Equal("0461-002 | 0017 - 00 | 02-40-50 A 001", clipboard); but that get's the content of the local clipboard where the xunit test is executed. Using a RemoteDriver it doesn't get the correct result of course. Is there any way to access the clipboard of the remote machine? I failed yet to find something e.g. in Driver.Desktop. Solved