Example #1
0
 private PathElementProxyQueryRemote(RemoteUiElement response)
     : base(response.Name)
 {
     IsActive = response.IsActive;
     Name     = response.Name;
     Text     = response.Text;
 }
Example #2
0
 public UiElementRemote(
     RemoteUiElement remoteUiElement,
     UnityDriverHostProcess process
     ) : base(remoteUiElement)
 {
     _remoteUiElement = remoteUiElement;
     _process         = process;
 }
 void LeftClickUp(RemoteUiElement element)
 {
     _service.LeftClickUp(element);
 }
 void LeftClickDown(RemoteUiElement element)
 {
     _service.LeftClickDown(element);
 }
 public void LeftClickUp(RemoteUiElement element) => _driver.LeftClickUp(element);
Example #6
0
 public void LeftClickUp(RemoteUiElement elementArg)
 => _client.Send("LeftClickUp", elementArg);