Navigate to Link
Navigate to Link
Section titled “Navigate to Link”What it does: Automatically navigates to different web pages during your workflow, allowing you to collect data from multiple sources or continue processes across different sites.
What Goes In
Section titled “What Goes In”| Name | Type | Description | Required | Default |
|---|---|---|---|---|
| Target URL | String | The web address to navigate to | Yes | "" |
| Navigation Method | String | Where to open: current-tab, new-tab, new-window | No | current-tab |
| Wait for Load | Boolean | Wait for page to fully load before continuing | No | true |
What Comes Out
Section titled “What Comes Out”| Name | Type | Description |
|---|---|---|
| success | Boolean | Whether navigation was successful |
| finalUrl | String | The final URL after any redirects |
| pageTitle | String | Title of the loaded page |
| loadTime | Number | How long the page took to load (milliseconds) |
Real-World Examples
Section titled “Real-World Examples”Multi-Site Price Comparison Navigate to different e-commerce sites to compare prices for the same product automatically.
Research Data Collection Visit multiple news sources or research sites to gather information on a specific topic.
Social Media Management Navigate between different social platforms to post content or check engagement metrics.
How to Use It
Section titled “How to Use It”- Set the target URL - Enter the web address you want to visit
- Choose navigation method - Current tab, new tab, or new window
- Run the workflow - The node navigates to the URL and waits for it to load
- Continue processing - Your workflow continues on the new page
Simple Example:
{ "targetUrl": "https://example.com/products", "navigationMethod": "current-tab", "waitForLoad": true}🔍 Technical Details
Navigation Methods:
- Current Tab: Replaces the current page (like clicking a link)
- New Tab: Opens in a new browser tab (keeps original page open)
- New Window: Opens in a completely new browser window
Wait Options:
- Wait for Load: Ensures the page is fully loaded before continuing
- Wait for Element: Waits for a specific element to appear (useful for dynamic content)
Error Handling: The node automatically retries failed navigation and can use fallback URLs if the primary URL doesn’t work.
Try It Yourself
Section titled “Try It Yourself”Product Research Workflow:
- Start on a product search page
- Navigate to individual product pages
- Extract product details and prices
- Compare across multiple sites
News Monitoring:
- Navigate to different news websites
- Extract headlines and articles
- Analyze sentiment and trends
- Generate daily news summary
Job Application Process:
- Navigate to job listing sites
- Open individual job postings
- Extract job requirements
- Navigate to application forms and fill them
Common Issues:
- Page won’t load? Check the URL is correct and the site is accessible
- Workflow stops after navigation? Make sure “Wait for Load” is enabled
- Getting blocked? Some sites block automated browsing - try using “new-tab” method
What’s Next?
Section titled “What’s Next?”- Get All Links - Extract links from pages to navigate to
- Form Filler - Fill out forms on the pages you navigate to
- Get All Text - Extract content from pages after navigation