简体   繁体   中英

How to set Location in android app Google maps using appium

I am testing google map for localization testing. I have to set location of except from my current location. But it is taking my current location.

Sample Code:

 Location location = new Location(77.59974003, 12.91024781, 909);
 driver.setLocation(location);

Try using the code which you have written for seting the location before the map is displayed.

Location location = new Location(77.59974003, 12.91024781, 909);
driver.setLocation(location);

This will set the driver location before the map is displayed on the screen.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM