org.openqa.selenium.safari.SafariDriver Maven / Gradle / Ivy
Show all versions of selenium-safari-driver Show documentation
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you 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.safari;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.openqa.selenium.Beta;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.internal.Require;
import org.openqa.selenium.remote.CommandInfo;
import org.openqa.selenium.remote.FileDetector;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.openqa.selenium.remote.RemoteWebDriverBuilder;
import org.openqa.selenium.remote.http.ClientConfig;
import org.openqa.selenium.remote.service.DriverCommandExecutor;
import org.openqa.selenium.remote.service.DriverFinder;
import org.openqa.selenium.remote.service.DriverService;
/**
* A WebDriver implementation that controls Safari using a browser extension (consequently, only
* Safari 5.1+ is supported).
*
* This driver can be configured using the {@link SafariOptions} class.
*/
public class SafariDriver extends RemoteWebDriver implements HasPermissions, HasDebugger {
private final HasPermissions permissions;
private final HasDebugger debugger;
/** Initializes a new SafariDriver} class with default {@link SafariOptions}. */
public SafariDriver() {
this(new SafariOptions());
}
/**
* Initializes a new SafariDriver using the specified {@link SafariOptions}.
*
* @param safariOptions safari specific options / capabilities for the driver
*/
public SafariDriver(SafariOptions safariOptions) {
this(
safariOptions.getUseTechnologyPreview()
? SafariTechPreviewDriverService.createDefaultService()
: SafariDriverService.createDefaultService(),
safariOptions);
}
/**
* Initializes a new SafariDriver backed by the specified {@link SafariDriverService}.
*
* @param safariService preconfigured safari service
*/
public SafariDriver(SafariDriverService safariService) {
this(safariService, new SafariOptions());
}
/**
* Initializes a new SafariDriver using the specified {@link SafariOptions}.
*
* @param service either {@link SafariTechPreviewDriverService} or {@link SafariDriverService}
* @param options safari specific options / capabilities for the driver
*/
public SafariDriver(DriverService service, SafariOptions options) {
this(service, options, ClientConfig.defaultConfig());
}
public SafariDriver(DriverService service, SafariOptions options, ClientConfig clientConfig) {
super(generateExecutor(service, options, clientConfig), options);
permissions = new AddHasPermissions().getImplementation(getCapabilities(), getExecuteMethod());
debugger = new AddHasDebugger().getImplementation(getCapabilities(), getExecuteMethod());
}
private static SafariDriverCommandExecutor generateExecutor(
DriverService service, SafariOptions options, ClientConfig clientConfig) {
Require.nonNull("Driver service", service);
Require.nonNull("Driver options", options);
Require.nonNull("Driver clientConfig", clientConfig);
DriverFinder finder = new DriverFinder(service, options);
service.setExecutable(finder.getDriverPath());
return new SafariDriverCommandExecutor(service, clientConfig);
}
@Beta
public static RemoteWebDriverBuilder builder() {
return RemoteWebDriver.builder().oneOf(new SafariOptions());
}
@Override
public void setPermissions(String permission, boolean value) {
Require.nonNull("Permission Name", permission);
Require.nonNull("Permission Value", value);
this.permissions.setPermissions(permission, value);
}
@Override
public Map getPermissions() {
return permissions.getPermissions();
}
@Override
public void attachDebugger() {
debugger.attachDebugger();
}
@Override
public void setFileDetector(FileDetector detector) {
throw new WebDriverException(
"Setting the file detector only works on remote webdriver instances obtained "
+ "via RemoteWebDriver");
}
private static class SafariDriverCommandExecutor extends DriverCommandExecutor {
public SafariDriverCommandExecutor(DriverService service, ClientConfig clientConfig) {
super(service, getExtraCommands(), clientConfig);
}
private static Map getExtraCommands() {
return Stream.of(
new AddHasPermissions().getAdditionalCommands(),
new AddHasDebugger().getAdditionalCommands())
.flatMap((m) -> m.entrySet().stream())
.collect(Collectors.toUnmodifiableMap(Map.Entry::getKey, Map.Entry::getValue));
}
}
}