Class FrameAttached
- java.lang.Object
-
- org.openqa.selenium.devtools.page.model.FrameAttached
-
public class FrameAttached extends java.lang.Object
Fired when frame has been attached to its parent.
-
-
Constructor Summary
Constructors Constructor Description FrameAttached(FrameId frameId, FrameId parentFrameId, java.util.Optional<StackTrace> stack)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameId
getFrameId()
Id of the frame that has been attached.FrameId
getParentFrameId()
Parent frame identifier.java.util.Optional<StackTrace>
getStack()
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
-
-
-
Constructor Detail
-
FrameAttached
public FrameAttached(FrameId frameId, FrameId parentFrameId, java.util.Optional<StackTrace> stack)
-
-
Method Detail
-
getFrameId
public FrameId getFrameId()
Id of the frame that has been attached.
-
getParentFrameId
public FrameId getParentFrameId()
Parent frame identifier.
-
getStack
public java.util.Optional<StackTrace> getStack()
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
-
-