--- title: "system.perspective.navigateForward" description: "Navigate the session to a specified view or mounted page. This is similar to a browser's \"forward\" function." --- # system.perspective.navigateForward > Navigate the session to a specified view or mounted page. This is similar to a browser's "forward" function. This function is used in **Python Scripting**. ## Description ## Syntax :::tip This function accepts [keyword arguments](platform\scripting\python-scripting\user-defined-functions.md#keyword-arguments). ::: `system.perspective.navigateForward([sessionId], [pageId])` ### Parameters Type | Parameter | Description ------- | ------- | ------ String | `sessionId` | Identifier of the Session to target. If omitted, the current Session will be used automatically. When targeting a different session, then the pageId parameter must be included in the call. [optional] String | `pageId` | Identifier of the page to target. If omitted, the current page will be used automatically. [optional] ### Returns Nothing ### Scope Gateway, Perspective Session :::note This function will only work in the Gateway scope if both `sessionId` and `pageId` are supplied to the call. ::: ## Code Examples ```python title="Code Snippet" system.perspective.navigateForward() ```