org.openqa.selenium.devtools.v85.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-v85 Show documentation
Show all versions of selenium-devtools-v85 Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
package org.openqa.selenium.devtools.v85.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 com.google.common.collect.ImmutableMap;
import org.openqa.selenium.json.JsonInput;
/**
* This domain is deprecated.
*/
@Deprecated()
public class Schema {
/**
* Returns supported domains.
*/
public static Command> getDomains() {
ImmutableMap.Builder params = ImmutableMap.builder();
return new Command<>("Schema.getDomains", params.build(), ConverterFunctions.map("domains", new com.google.common.reflect.TypeToken>() {
}.getType()));
}
}