io.appium.java_client.ExecuteCDPCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
* 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 io.appium.java_client;
import org.openqa.selenium.remote.Response;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import static io.appium.java_client.MobileCommand.EXECUTE_GOOGLE_CDP_COMMAND;
import static java.util.Objects.requireNonNull;
public interface ExecuteCDPCommand extends ExecutesMethod {
/**
* Allows to execute ChromeDevProtocol commands against Android Chrome browser session.
*
* @param command Command to execute against the browser (For Ref : https://chromedevtools.github.io/devtools-protocol/)
* @param params additional parameters required to execute the command
* @return Value (Output of the command execution)
* @throws org.openqa.selenium.WebDriverException if there was a failure while executing the command
* @since Appium 1.18
*/
default Map executeCdpCommand(String command, @Nullable Map params) {
Map data = new HashMap<>();
data.put("cmd", requireNonNull(command));
data.put("params", params == null ? Collections.emptyMap() : params);
Response response = execute(EXECUTE_GOOGLE_CDP_COMMAND, data);
//noinspection unchecked
return Collections.unmodifiableMap((Map) response.getValue());
}
/**
* Allows to execute ChromeDevProtocol commands against Android Chrome browser session without parameters.
*
* @param command Command to execute against the browser (For Ref : https://chromedevtools.github.io/devtools-protocol/)
* @return Value (Output of the command execution)
* @throws org.openqa.selenium.WebDriverException if there was a failure while executing the command
* @since Appium 1.18
*/
default Map executeCdpCommand(String command) {
return executeCdpCommand(command, null);
}
}