org.zaproxy.clientapi.gen.Selenium Maven / Gradle / Ivy
Show all versions of zap-clientapi Show documentation
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2016 The ZAP Development Team
*
* 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.zaproxy.clientapi.gen;
import java.util.HashMap;
import java.util.Map;
import org.zaproxy.clientapi.core.ApiResponse;
import org.zaproxy.clientapi.core.ClientApi;
import org.zaproxy.clientapi.core.ClientApiException;
/** This file was automatically generated. */
@SuppressWarnings("javadoc")
public class Selenium extends org.zaproxy.clientapi.gen.deprecated.SeleniumDeprecated {
private final ClientApi api;
public Selenium(ClientApi api) {
super(api);
this.api = api;
}
/**
* Returns the current path to ChromeDriver
*
* This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse optionChromeDriverPath() throws ClientApiException {
return api.callApi("selenium", "view", "optionChromeDriverPath", null);
}
/**
* Returns the current path to Firefox binary
*
*
This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse optionFirefoxBinaryPath() throws ClientApiException {
return api.callApi("selenium", "view", "optionFirefoxBinaryPath", null);
}
/**
* Returns the current path to Firefox driver (geckodriver)
*
*
This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse optionFirefoxDriverPath() throws ClientApiException {
return api.callApi("selenium", "view", "optionFirefoxDriverPath", null);
}
/** This component is optional and therefore the API will only work if it is installed */
@Deprecated
public ApiResponse optionIeDriverPath() throws ClientApiException {
return api.callApi("selenium", "view", "optionIeDriverPath", null);
}
/**
* Returns the current path to PhantomJS binary
*
*
This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse optionPhantomJsBinaryPath() throws ClientApiException {
return api.callApi("selenium", "view", "optionPhantomJsBinaryPath", null);
}
/**
* Sets the current path to ChromeDriver
*
*
This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse setOptionChromeDriverPath(String string) throws ClientApiException {
Map map = new HashMap<>();
map.put("String", string);
return api.callApi("selenium", "action", "setOptionChromeDriverPath", map);
}
/**
* Sets the current path to Firefox binary
*
* This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse setOptionFirefoxBinaryPath(String string) throws ClientApiException {
Map map = new HashMap<>();
map.put("String", string);
return api.callApi("selenium", "action", "setOptionFirefoxBinaryPath", map);
}
/**
* Sets the current path to Firefox driver (geckodriver)
*
* This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse setOptionFirefoxDriverPath(String string) throws ClientApiException {
Map map = new HashMap<>();
map.put("String", string);
return api.callApi("selenium", "action", "setOptionFirefoxDriverPath", map);
}
/** This component is optional and therefore the API will only work if it is installed */
@Deprecated
public ApiResponse setOptionIeDriverPath(String string) throws ClientApiException {
Map map = new HashMap<>();
map.put("String", string);
return api.callApi("selenium", "action", "setOptionIeDriverPath", map);
}
/**
* Sets the current path to PhantomJS binary
*
* This component is optional and therefore the API will only work if it is installed
*/
public ApiResponse setOptionPhantomJsBinaryPath(String string) throws ClientApiException {
Map map = new HashMap<>();
map.put("String", string);
return api.callApi("selenium", "action", "setOptionPhantomJsBinaryPath", map);
}
}