Go Back
Navigates to the previous page in the browser's history, similar to clicking the back button.
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing the node.
- Continue On Error - Automation will continue regardless of any error. The default value is false.
info
If Continue On Error property is true, no error is caught when the project is executed, even if the Catch node is used.
Input
- Browser ID - The browser session identifier from the Open Browser node.
Examples
Basic Navigation Back
Browser ID: {{browser_id}}
Navigate Back and Wait for Element
1. Go Back node:
Browser ID: {{browser_id}}
2. Wait Element node:
Browser ID: {{browser_id}}
Selector: //h1[@class='page-title']
Navigate Back Multiple Steps
Loop 3 times:
Go Back node:
Browser ID: {{browser_id}}
Tips
- Use after navigating through multiple pages to return to previous content
- Add Wait Element after Go Back to ensure the previous page loaded
- Browser history is maintained during the session
- Going back beyond the first page has no effect
- Combine with Get URL to verify the current page after navigation
Common Errors
- "Browser ID cannot be empty" - Connect to an Open Browser node
- "Browser session not found" - Ensure the Open Browser node has run successfully
Related Nodes
- Go Forward - Navigate forward in history
- Open Link - Navigate to a URL
- Refresh - Reload the current page
- Get URL - Get current URL