Exemplo n.º 1
0
        static void Main(string[] args)
        {
            MobileDb.CreateRegistrarClient("http://localhost:8080", new JsonProvider());

            var match = MobileDb.Instance.GetFirstMatch(new DeviceInfo {MobileOs = MobileOs.Android});

            var device = new ProxyDevice(match.IP);
            device.Connect();
            device.Browser.Navigate("http://google.com/");
            device.Disconnect();
        }
Exemplo n.º 2
0
 public void Setup()
 {
     Remote = new ProxyDevice("127.0.0.1");
     Remote.Connect();
 }