Class Page.NavigateResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.v102.page.Page.NavigateResponse
-
- Enclosing class:
- Page
public static class Page.NavigateResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description NavigateResponse(FrameId frameId, java.util.Optional<LoaderId> loaderId, java.util.Optional<java.lang.String> errorText)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.String>
getErrorText()
User friendly error message, present if and only if navigation has failed.FrameId
getFrameId()
Frame id that has navigated (or failed to navigate)java.util.Optional<LoaderId>
getLoaderId()
Loader identifier.
-
-
-
Method Detail
-
getFrameId
public FrameId getFrameId()
Frame id that has navigated (or failed to navigate)
-
getLoaderId
public java.util.Optional<LoaderId> getLoaderId()
Loader identifier.
-
getErrorText
public java.util.Optional<java.lang.String> getErrorText()
User friendly error message, present if and only if navigation has failed.
-
-