Class FrameResourceTree
- java.lang.Object
-
- org.openqa.selenium.devtools.v103.page.model.FrameResourceTree
-
@Beta public class FrameResourceTree extends java.lang.Object
Information about the Frame hierarchy along with their cached resources.
-
-
Constructor Summary
Constructors Constructor Description FrameResourceTree(Frame frame, java.util.Optional<java.util.List<FrameResourceTree>> childFrames, java.util.List<FrameResource> resources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.util.List<FrameResourceTree>>
getChildFrames()
Child frames.Frame
getFrame()
Frame information for this tree item.java.util.List<FrameResource>
getResources()
Information about frame resources.
-
-
-
Constructor Detail
-
FrameResourceTree
public FrameResourceTree(Frame frame, java.util.Optional<java.util.List<FrameResourceTree>> childFrames, java.util.List<FrameResource> resources)
-
-
Method Detail
-
getFrame
public Frame getFrame()
Frame information for this tree item.
-
getChildFrames
public java.util.Optional<java.util.List<FrameResourceTree>> getChildFrames()
Child frames.
-
getResources
public java.util.List<FrameResource> getResources()
Information about frame resources.
-
-