org.openqa.selenium.devtools.v122.security.Security Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-devtools-v122 Show documentation
Show all versions of selenium-devtools-v122 Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
package org.openqa.selenium.devtools.v122.security;
import org.openqa.selenium.Beta;
import org.openqa.selenium.devtools.Command;
import org.openqa.selenium.devtools.Event;
import org.openqa.selenium.devtools.ConverterFunctions;
import java.util.Map;
import java.util.LinkedHashMap;
import org.openqa.selenium.json.JsonInput;
/**
* Security
*/
public class Security {
/**
* Disables tracking security state changes.
*/
public static Command disable() {
LinkedHashMap params = new LinkedHashMap<>();
return new Command<>("Security.disable", Map.copyOf(params));
}
/**
* Enables tracking security state changes.
*/
public static Command enable() {
LinkedHashMap params = new LinkedHashMap<>();
return new Command<>("Security.enable", Map.copyOf(params));
}
/**
* Enable/disable whether all certificate errors should be ignored.
*/
public static Command setIgnoreCertificateErrors(java.lang.Boolean ignore) {
java.util.Objects.requireNonNull(ignore, "ignore is required");
LinkedHashMap params = new LinkedHashMap<>();
params.put("ignore", ignore);
return new Command<>("Security.setIgnoreCertificateErrors", Map.copyOf(params));
}
/**
* Handles a certificate error that fired a certificateError event.
*/
@Deprecated()
public static Command handleCertificateError(java.lang.Integer eventId, org.openqa.selenium.devtools.v122.security.model.CertificateErrorAction action) {
java.util.Objects.requireNonNull(eventId, "eventId is required");
java.util.Objects.requireNonNull(action, "action is required");
LinkedHashMap params = new LinkedHashMap<>();
params.put("eventId", eventId);
params.put("action", action);
return new Command<>("Security.handleCertificateError", Map.copyOf(params));
}
/**
* Enable/disable overriding certificate errors. If enabled, all certificate error events need to
* be handled by the DevTools client and should be answered with `handleCertificateError` commands.
*/
@Deprecated()
public static Command setOverrideCertificateErrors(java.lang.Boolean override) {
java.util.Objects.requireNonNull(override, "override is required");
LinkedHashMap params = new LinkedHashMap<>();
params.put("override", override);
return new Command<>("Security.setOverrideCertificateErrors", Map.copyOf(params));
}
public static Event certificateError() {
return new Event<>("Security.certificateError", input -> input.read(org.openqa.selenium.devtools.v122.security.model.CertificateError.class));
}
public static Event visibleSecurityStateChanged() {
return new Event<>("Security.visibleSecurityStateChanged", ConverterFunctions.map("visibleSecurityState", org.openqa.selenium.devtools.v122.security.model.VisibleSecurityState.class));
}
public static Event securityStateChanged() {
return new Event<>("Security.securityStateChanged", input -> input.read(org.openqa.selenium.devtools.v122.security.model.SecurityStateChanged.class));
}
}