Class FrameRequestedNavigation
- java.lang.Object
-
- org.openqa.selenium.devtools.page.model.FrameRequestedNavigation
-
@Beta public class FrameRequestedNavigation extends java.lang.Object
Fired when a renderer-initiated navigation is requested. Navigation may still be cancelled after the event is issued.
-
-
Constructor Summary
Constructors Constructor Description FrameRequestedNavigation(FrameId frameId, ClientNavigationReason reason, java.lang.String url)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameId
getFrameId()
Id of the frame that is being navigated.ClientNavigationReason
getReason()
The reason for the navigation.java.lang.String
getUrl()
The destination URL for the requested navigation.
-
-
-
Constructor Detail
-
FrameRequestedNavigation
public FrameRequestedNavigation(FrameId frameId, ClientNavigationReason reason, java.lang.String url)
-
-
Method Detail
-
getFrameId
public FrameId getFrameId()
Id of the frame that is being navigated.
-
getReason
public ClientNavigationReason getReason()
The reason for the navigation.
-
getUrl
public java.lang.String getUrl()
The destination URL for the requested navigation.
-
-