public void setLocationTest()
 {
     var l = new Location();
     l.Altitude = 10;
     l.Longitude = 10;
     l.Latitude = 10;
     driver.Location = l;
     //var l1 = driver.Location;
 }
 public void setLocationTest()
 {
     ((AndroidDriver<AndroidElement>)driver).ToggleLocationServices();
     var l = new Location();
     l.Altitude = 10;
     l.Longitude = 10;
     l.Latitude = 10;
     driver.Location = l;
     //var l1 = driver.Location;
 }