Uses of Class
org.openqa.selenium.devtools.backgroundservice.model.ServiceName
-
Packages that use ServiceName Package Description org.openqa.selenium.devtools.backgroundservice org.openqa.selenium.devtools.backgroundservice.model -
-
Uses of ServiceName in org.openqa.selenium.devtools.backgroundservice
Methods in org.openqa.selenium.devtools.backgroundservice with parameters of type ServiceName Modifier and Type Method Description static Command<java.lang.Void>
BackgroundService. clearEvents(ServiceName service)
Clears all stored data for the service.static Command<java.lang.Void>
BackgroundService. setRecording(java.lang.Boolean shouldRecord, ServiceName service)
Set the recording state for the service.static Command<java.lang.Void>
BackgroundService. startObserving(ServiceName service)
Enables event updates for the service.static Command<java.lang.Void>
BackgroundService. stopObserving(ServiceName service)
Disables event updates for the service. -
Uses of ServiceName in org.openqa.selenium.devtools.backgroundservice.model
Methods in org.openqa.selenium.devtools.backgroundservice.model that return ServiceName Modifier and Type Method Description static ServiceName
ServiceName. fromString(java.lang.String s)
ServiceName
BackgroundServiceEvent. getService()
The Background Service this event belongs to.ServiceName
RecordingStateChanged. getService()
static ServiceName
ServiceName. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ServiceName[]
ServiceName. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.openqa.selenium.devtools.backgroundservice.model with parameters of type ServiceName Constructor Description BackgroundServiceEvent(TimeSinceEpoch timestamp, java.lang.String origin, RegistrationID serviceWorkerRegistrationId, ServiceName service, java.lang.String eventName, java.lang.String instanceId, java.util.List<EventMetadata> eventMetadata)
RecordingStateChanged(java.lang.Boolean isRecording, ServiceName service)
-