Class SubresourceWebBundleInnerResponseParsed
- java.lang.Object
-
- org.openqa.selenium.devtools.v113.network.model.SubresourceWebBundleInnerResponseParsed
-
@Beta public class SubresourceWebBundleInnerResponseParsed extends java.lang.ObjectFired when handling requests for resources within a .wbn file. Note: this will only be fired for resources that are requested by the webpage.
-
-
Constructor Summary
Constructors Constructor Description SubresourceWebBundleInnerResponseParsed(RequestId innerRequestId, java.lang.String innerRequestURL, java.util.Optional<RequestId> bundleRequestId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<RequestId>getBundleRequestId()Bundle request identifier.RequestIdgetInnerRequestId()Request identifier of the subresource requestjava.lang.StringgetInnerRequestURL()URL of the subresource resource.
-
-
-
Method Detail
-
getInnerRequestId
public RequestId getInnerRequestId()
Request identifier of the subresource request
-
getInnerRequestURL
public java.lang.String getInnerRequestURL()
URL of the subresource resource.
-
getBundleRequestId
public java.util.Optional<RequestId> getBundleRequestId()
Bundle request identifier. Used to match this information to another event. This made be absent in case when the instrumentation was enabled only after webbundle was parsed.
-
-