Class WebAudio
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.webaudio.WebAudio
-
@Beta public class WebAudio extends java.lang.ObjectThis domain allows inspection of Web Audio API. https://webaudio.github.io/web-audio-api/
-
-
Constructor Summary
Constructors Constructor Description WebAudio()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.openqa.selenium.devtools.Event<AudioListener>audioListenerCreated()static org.openqa.selenium.devtools.Event<AudioListenerWillBeDestroyed>audioListenerWillBeDestroyed()static org.openqa.selenium.devtools.Event<AudioNode>audioNodeCreated()static org.openqa.selenium.devtools.Event<AudioNodeWillBeDestroyed>audioNodeWillBeDestroyed()static org.openqa.selenium.devtools.Event<AudioParam>audioParamCreated()static org.openqa.selenium.devtools.Event<AudioParamWillBeDestroyed>audioParamWillBeDestroyed()static org.openqa.selenium.devtools.Event<BaseAudioContext>contextChanged()static org.openqa.selenium.devtools.Event<BaseAudioContext>contextCreated()static org.openqa.selenium.devtools.Event<GraphObjectId>contextWillBeDestroyed()static org.openqa.selenium.devtools.Command<java.lang.Void>disable()Disables the WebAudio domain.static org.openqa.selenium.devtools.Command<java.lang.Void>enable()Enables the WebAudio domain and starts sending context lifetime events.static org.openqa.selenium.devtools.Command<ContextRealtimeData>getRealtimeData(GraphObjectId contextId)Fetch the realtime data from the registered contexts.static org.openqa.selenium.devtools.Event<NodeParamConnected>nodeParamConnected()static org.openqa.selenium.devtools.Event<NodeParamDisconnected>nodeParamDisconnected()static org.openqa.selenium.devtools.Event<NodesConnected>nodesConnected()static org.openqa.selenium.devtools.Event<NodesDisconnected>nodesDisconnected()
-
-
-
Method Detail
-
enable
public static org.openqa.selenium.devtools.Command<java.lang.Void> enable()
Enables the WebAudio domain and starts sending context lifetime events.
-
disable
public static org.openqa.selenium.devtools.Command<java.lang.Void> disable()
Disables the WebAudio domain.
-
getRealtimeData
public static org.openqa.selenium.devtools.Command<ContextRealtimeData> getRealtimeData(GraphObjectId contextId)
Fetch the realtime data from the registered contexts.
-
contextCreated
public static org.openqa.selenium.devtools.Event<BaseAudioContext> contextCreated()
-
contextWillBeDestroyed
public static org.openqa.selenium.devtools.Event<GraphObjectId> contextWillBeDestroyed()
-
contextChanged
public static org.openqa.selenium.devtools.Event<BaseAudioContext> contextChanged()
-
audioListenerCreated
public static org.openqa.selenium.devtools.Event<AudioListener> audioListenerCreated()
-
audioListenerWillBeDestroyed
public static org.openqa.selenium.devtools.Event<AudioListenerWillBeDestroyed> audioListenerWillBeDestroyed()
-
audioNodeCreated
public static org.openqa.selenium.devtools.Event<AudioNode> audioNodeCreated()
-
audioNodeWillBeDestroyed
public static org.openqa.selenium.devtools.Event<AudioNodeWillBeDestroyed> audioNodeWillBeDestroyed()
-
audioParamCreated
public static org.openqa.selenium.devtools.Event<AudioParam> audioParamCreated()
-
audioParamWillBeDestroyed
public static org.openqa.selenium.devtools.Event<AudioParamWillBeDestroyed> audioParamWillBeDestroyed()
-
nodesConnected
public static org.openqa.selenium.devtools.Event<NodesConnected> nodesConnected()
-
nodesDisconnected
public static org.openqa.selenium.devtools.Event<NodesDisconnected> nodesDisconnected()
-
nodeParamConnected
public static org.openqa.selenium.devtools.Event<NodeParamConnected> nodeParamConnected()
-
nodeParamDisconnected
public static org.openqa.selenium.devtools.Event<NodeParamDisconnected> nodeParamDisconnected()
-
-