Class PrerenderAttemptCompleted
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.page.model.PrerenderAttemptCompleted
-
@Beta public class PrerenderAttemptCompleted extends java.lang.Object
Fired when a prerender attempt is completed.
-
-
Constructor Summary
Constructors Constructor Description PrerenderAttemptCompleted(FrameId initiatingFrameId, java.lang.String prerenderingUrl, PrerenderFinalStatus finalStatus, java.util.Optional<java.lang.String> disallowedApiMethod)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.String>
getDisallowedApiMethod()
This is used to give users more information about the name of the API call that is incompatible with prerender and has caused the cancellation of the attemptPrerenderFinalStatus
getFinalStatus()
FrameId
getInitiatingFrameId()
The frame id of the frame initiating prerendering.java.lang.String
getPrerenderingUrl()
-
-
-
Constructor Detail
-
PrerenderAttemptCompleted
public PrerenderAttemptCompleted(FrameId initiatingFrameId, java.lang.String prerenderingUrl, PrerenderFinalStatus finalStatus, java.util.Optional<java.lang.String> disallowedApiMethod)
-
-
Method Detail
-
getInitiatingFrameId
public FrameId getInitiatingFrameId()
The frame id of the frame initiating prerendering.
-
getPrerenderingUrl
public java.lang.String getPrerenderingUrl()
-
getFinalStatus
public PrerenderFinalStatus getFinalStatus()
-
getDisallowedApiMethod
public java.util.Optional<java.lang.String> getDisallowedApiMethod()
This is used to give users more information about the name of the API call that is incompatible with prerender and has caused the cancellation of the attempt
-
-