Package io.webfolder.cdp.event.page
Class FrameAttached
- java.lang.Object
-
- io.webfolder.cdp.event.page.FrameAttached
-
public class FrameAttached extends Object
Fired when frame has been attached to its parent
-
-
Constructor Summary
Constructors Constructor Description FrameAttached()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFrameId()
Id of the frame that has been attached.String
getParentFrameId()
Parent frame identifier.StackTrace
getStack()
JavaScript stack trace of when frame was attached, only set if frame initiated from script.void
setFrameId(String frameId)
Id of the frame that has been attached.void
setParentFrameId(String parentFrameId)
Parent frame identifier.void
setStack(StackTrace stack)
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
-
-
-
Method Detail
-
getFrameId
public String getFrameId()
Id of the frame that has been attached.
-
setFrameId
public void setFrameId(String frameId)
Id of the frame that has been attached.
-
getParentFrameId
public String getParentFrameId()
Parent frame identifier.
-
setParentFrameId
public void setParentFrameId(String parentFrameId)
Parent frame identifier.
-
getStack
public StackTrace getStack()
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
-
setStack
public void setStack(StackTrace stack)
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
-
-