GNOME Bugzilla – Bug 684209
Incorrect control mapping
Last modified: 2012-09-17 18:42:49 UTC
1. Start Windows Device Manager 2. Execute the following code ( c# .NET ): Ldtp.Ldtp window = new Ldtp.Ldtp("Device Manager"); string[] list = window.GetObjectList(); // "tblcProcessors" is present in the array window.Click("tblcProcessors"); // throws an exception - object not found According to the Inspect utility, the object is a tree item, not a table cell, so it's wrongly identified.
Hello, You have to use this API: selectrow('Device Manager', 'ttbl0', 'Processors') Regarding Tree Item listed as table cell, its purposely [1] [1] - https://github.com/ldtp/cobra/blob/master/Ldtpd/CommonStruct.cs#L106 Thanks