org.openqa.selenium.android.AndroidDriver Maven / Gradle / Ivy
/*
Copyright 2011 WebDriver committers
Copyright 2011 Google Inc.
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.BrowserConnection;
import org.openqa.selenium.html5.LocalStorage;
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.RemoteTouchScreen;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.openqa.selenium.remote.html5.RemoteLocalStorage;
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 {
private TouchScreen touch;
private RemoteLocalStorage localStorage;
private RemoteSessionStorage sessionStorage;
/**
* 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());
}
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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy