Package io.webfolder.cdp.event.page
Class FrameScheduledNavigation
java.lang.Object
io.webfolder.cdp.event.page.FrameScheduledNavigation
public class FrameScheduledNavigation
extends java.lang.Object
Fired when frame schedules a potential navigation
-
Constructor Summary
Constructors Constructor Description FrameScheduledNavigation()
-
Method Summary
Modifier and Type Method Description java.lang.Double
getDelay()
Delay (in seconds) until the navigation is scheduled to begin.java.lang.String
getFrameId()
Id of the frame that has scheduled a navigation.FrameNavigationReason
getReason()
The reason for the navigation.java.lang.String
getUrl()
The destination URL for the scheduled navigation.void
setDelay(java.lang.Double delay)
Delay (in seconds) until the navigation is scheduled to begin.void
setFrameId(java.lang.String frameId)
Id of the frame that has scheduled a navigation.void
setReason(FrameNavigationReason reason)
The reason for the navigation.void
setUrl(java.lang.String url)
The destination URL for the scheduled navigation.
-
Constructor Details
-
FrameScheduledNavigation
public FrameScheduledNavigation()
-
-
Method Details
-
getFrameId
public java.lang.String getFrameId()Id of the frame that has scheduled a navigation. -
setFrameId
public void setFrameId(java.lang.String frameId)Id of the frame that has scheduled a navigation. -
getDelay
public java.lang.Double getDelay()Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start. -
setDelay
public void setDelay(java.lang.Double delay)Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start. -
getReason
The reason for the navigation. -
setReason
The reason for the navigation. -
getUrl
public java.lang.String getUrl()The destination URL for the scheduled navigation. -
setUrl
public void setUrl(java.lang.String url)The destination URL for the scheduled navigation.
-