My method below has been working for over a year, returning the List of mobile devices that are connected to the laptop, that executes the tests. The laptop has only the runner installed (not studio), since it is a CI machine.
After the upgrade from 6.2.0 to 7.0.1, the code compiles successfully, but the returned list is empty, even though 2 iPhones are connected (green) on the 'devices' UI (under Runner settings).
Has anyone encountered this?

Code: Select all
...
using Ranorex.Core.Remoting;
...
public static ICollection<IRemoteEndpoint> getAllConnectedDevicesCollection()
{
return (RemoteServiceLocator.Service.AllKnownEndpoints);
}
Ziv Shapira