List of usage examples for org.openqa.selenium.remote.html5 RemoteLocationContext setLocation
@Override
public void setLocation(Location location)
From source file:com.google.iphone.testing.nativedriver.client.IosNativeDriver.java
License:Apache License
/** * Private method to set the geo location on the device or emulator *///from w w w.j a v a2 s.co m private void setLocation(Location loc) { RemoteLocationContext rc = new RemoteLocationContext(getExecuteMethod()); rc.setLocation(loc); }