Is it possible to get the absolute RxPath out of a RepoItemInfo?
The "Path" property of it just returns the relative path.
I think it would be a nice feature to get absolute paths from Info objects.
Regards
Max
using Ranorex.Core.Repository;
...
RepoItemInfo info = myRepo.MyFolder.MyItemInfo;
RxPath absolutePath = info.Path;
RepoGenBaseFolder folder = info.ParentFolder;
while (folder != null)
{
absolutePath = RxPath.Concat(folder.BasePath, absolutePath);
folder = info.ParentFolder;
}Users browsing this forum: No registered users and 1 guest