Defines the interface through which the user can execute advanced touch screen interactions.
Inheritance: ITouchScreen
 public DroidDriver(Uri remoteAddress, ICapabilities desiredCapabilities, TimeSpan commandTimeout)
     : base(remoteAddress, desiredCapabilities, commandTimeout)
 {
     _remoteAddr = remoteAddress.ToString();
     TouchScreen = new RemoteTouchScreen(this);
 }
 public DroidDriver(ICapabilities desiredCapabilities)
     : base(desiredCapabilities)
 {
     TouchScreen = new RemoteTouchScreen(this);
 }
 public DroidDriver(Uri remoteAddress, ICapabilities desiredCapabilities)
     : base(remoteAddress, desiredCapabilities)
 {
     _remoteAddr = remoteAddress.ToString();
     TouchScreen = new RemoteTouchScreen(this);
 }
 public DroidDriver(ICommandExecutor commandExecutor, ICapabilities desiredCapabilities)
     : base(commandExecutor, desiredCapabilities)
 {
     TouchScreen = new RemoteTouchScreen(this);
 }