Class NavigationEntry
- java.lang.Object
-
- org.openqa.selenium.devtools.v114.page.model.NavigationEntry
-
public class NavigationEntry extends java.lang.ObjectNavigation history entry.
-
-
Constructor Summary
Constructors Constructor Description NavigationEntry(java.lang.Integer id, java.lang.String url, java.lang.String userTypedURL, java.lang.String title, TransitionType transitionType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.IntegergetId()Unique id of the navigation history entry.java.lang.StringgetTitle()Title of the navigation history entry.TransitionTypegetTransitionType()Transition type.java.lang.StringgetUrl()URL of the navigation history entry.java.lang.StringgetUserTypedURL()URL that the user typed in the url bar.
-
-
-
Constructor Detail
-
NavigationEntry
public NavigationEntry(java.lang.Integer id, java.lang.String url, java.lang.String userTypedURL, java.lang.String title, TransitionType transitionType)
-
-
Method Detail
-
getId
public java.lang.Integer getId()
Unique id of the navigation history entry.
-
getUrl
public java.lang.String getUrl()
URL of the navigation history entry.
-
getUserTypedURL
public java.lang.String getUserTypedURL()
URL that the user typed in the url bar.
-
getTitle
public java.lang.String getTitle()
Title of the navigation history entry.
-
getTransitionType
public TransitionType getTransitionType()
Transition type.
-
-