org.openqa.selenium.devtools.v121.schema.Schema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-devtools-v121 Show documentation
Show all versions of selenium-devtools-v121 Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
package org.openqa.selenium.devtools.v121.schema;
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;
/**
* This domain is deprecated.
*/
@Deprecated()
public class Schema {
/**
* Returns supported domains.
*/
public static Command> getDomains() {
LinkedHashMap params = new LinkedHashMap<>();
return new Command<>("Schema.getDomains", Map.copyOf(params), ConverterFunctions.map("domains", input -> input.readArray(org.openqa.selenium.devtools.v121.schema.model.Domain.class)));
}
}