org.openqa.selenium.android.AndroidDriver Maven / Gradle / Ivy
/*
Copyright 2011 Selenium committers
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.openqa.selenium.android;
import com.google.common.collect.ImmutableMap;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.HasTouchScreen;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.Rotatable;
import org.openqa.selenium.ScreenOrientation;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.TouchScreen;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.html5.AppCacheStatus;
import org.openqa.selenium.html5.ApplicationCache;
import org.openqa.selenium.html5.BrowserConnection;
import org.openqa.selenium.html5.LocalStorage;
import org.openqa.selenium.html5.Location;
import org.openqa.selenium.html5.LocationContext;
import org.openqa.selenium.html5.SessionStorage;
import org.openqa.selenium.html5.WebStorage;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.DriverCommand;
import org.openqa.selenium.remote.FileDetector;
import org.openqa.selenium.remote.RemoteTouchScreen;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.openqa.selenium.remote.html5.RemoteLocalStorage;
import org.openqa.selenium.remote.html5.RemoteLocationContext;
import org.openqa.selenium.remote.html5.RemoteSessionStorage;
import java.net.MalformedURLException;
import java.net.URL;
/**
* A driver for running tests on an Android device or emulator.
*/
public class AndroidDriver extends RemoteWebDriver implements TakesScreenshot, Rotatable,
BrowserConnection, HasTouchScreen, WebStorage, LocationContext, ApplicationCache {
private TouchScreen touch;
private RemoteLocalStorage localStorage;
private RemoteSessionStorage sessionStorage;
private RemoteLocationContext locationContext;
/**
* The default constructor assumes the remote server is listening at http://localhost:8080/wd/hub
*/
public AndroidDriver() {
this(getDefaultUrl());
}
public AndroidDriver(Capabilities ignored) {
this();
}
public AndroidDriver(String remoteAddress) throws MalformedURLException {
this(new URL(remoteAddress));
}
public AndroidDriver(DesiredCapabilities caps) {
this(getDefaultUrl(), caps);
}
public AndroidDriver(URL remoteAddress) {
super(remoteAddress, getAndroidCapabilities(null));
init();
}
public AndroidDriver(URL url, DesiredCapabilities caps) {
super(url, getAndroidCapabilities(caps));
init();
}
private void init() {
touch = new RemoteTouchScreen(getExecuteMethod());
localStorage = new RemoteLocalStorage(getExecuteMethod());
sessionStorage = new RemoteSessionStorage(getExecuteMethod());
locationContext = new RemoteLocationContext(getExecuteMethod());
}
@Override
public void setFileDetector(FileDetector detector) {
throw new WebDriverException(
"Setting the file detector only works on remote webdriver instances obtained " +
"via RemoteWebDriver");
}
public X getScreenshotAs(OutputType target) throws WebDriverException {
String base64Png = execute(DriverCommand.SCREENSHOT).getValue().toString();
return target.convertFromBase64Png(base64Png);
}
public boolean isOnline() {
return (Boolean) execute(DriverCommand.IS_BROWSER_ONLINE).getValue();
}
public void setOnline(boolean online) throws WebDriverException {
execute(DriverCommand.SET_BROWSER_ONLINE, ImmutableMap.of("state", online));
}
private static DesiredCapabilities getAndroidCapabilities(DesiredCapabilities userPrefs) {
DesiredCapabilities caps = DesiredCapabilities.android();
caps.setCapability(CapabilityType.TAKES_SCREENSHOT, true);
caps.setCapability(CapabilityType.ROTATABLE, true);
caps.setCapability(CapabilityType.SUPPORTS_BROWSER_CONNECTION, true);
if (userPrefs != null) {
caps.merge(userPrefs);
}
return caps;
}
public void rotate(ScreenOrientation orientation) {
execute(DriverCommand.SET_SCREEN_ORIENTATION, ImmutableMap.of("orientation", orientation));
}
public ScreenOrientation getOrientation() {
return ScreenOrientation.valueOf(
(String) execute(DriverCommand.GET_SCREEN_ORIENTATION).getValue());
}
private static URL getDefaultUrl() {
try {
return new URL("http://localhost:8080/wd/hub");
} catch (MalformedURLException e) {
throw new WebDriverException("Malformed default remote URL: " + e.getMessage());
}
}
public TouchScreen getTouch() {
return touch;
}
public LocalStorage getLocalStorage() {
return localStorage;
}
public SessionStorage getSessionStorage() {
return sessionStorage;
}
public Location location() {
return locationContext.location();
}
public void setLocation(Location loc) {
locationContext.setLocation(loc);
}
public AppCacheStatus getStatus() {
String status = (String) execute(DriverCommand.GET_APP_CACHE_STATUS).getValue();
return AppCacheStatus.getEnum(status);
}
}