/// <summary>
 /// Initializes a new instance of the <see cref="PageObjectLocator"/> class.
 /// </summary>
 /// <param name="processObject">The process object.</param>
 internal PageObjectLocator(ITabObject processObject)
 {
     Clear();
     rootObject = processObject;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UIObjectInterfaceResolver"/> class.
 /// </summary>
 /// <param name="rootObject">The process object.</param>
 public UIObjectInterfaceResolver(ITabObject rootObject) => this.rootObject = rootObject;