Navigation Actions

Auto-Browse provides natural language commands for navigating between pages, handling URLs, and managing browser navigation state. This guide covers various navigation scenarios and best practices.

Basic Navigation

Navigate to URLs and pages:

// Navigate to a URL
await auto("go to https://example.com");

// Navigate using page name
await auto("go to the home page");

// Navigate using relative paths
await auto("go to /products");

Direct Navigation

// Navigate to specific pages
await auto("go to the login page");
await auto("navigate to the about page");
await auto("visit the contact page");

// Navigate with context
await auto("go to the settings page in account section");
await auto("navigate to the first product's details page");

Browser Controls

// Browser history navigation
await auto("go back");
await auto("go forward");
await auto("refresh the page");

// Multiple steps
await auto("go back 2 pages");
await auto("go forward one page");

Advanced Navigation

URL Parameters

Handle URLs with parameters:

// Navigate with query parameters
await auto("go to /search?q=example");

// Navigate with path parameters
await auto("go to /users/123/profile");

// Complex URLs
await auto("go to /products?category=electronics&sort=price");

State Handling

Manage navigation state:

// Wait for navigation
await auto("wait until navigation is complete");

// Verify current location
await auto("verify we are on the home page");
await auto("confirm URL contains /dashboard");

// Handle redirects
await auto("follow redirect if present");

Common Patterns

1. Authentication Flows

async function authFlow() {
	await auto("go to the login page");
	await auto('type "user@example.com" in email');
	await auto('type "password123" in password');
	await auto("click login");
	await auto("verify redirect to dashboard");
}

2. Multi-step Processes

async function checkoutFlow() {
	await auto("go to shopping cart");
	await auto("proceed to checkout");
	await auto("navigate to payment page");
	await auto("verify on confirmation page");
}

3. Application Routes

async function routeNavigation() {
	await auto("go to main dashboard");
	await auto("open user settings");
	await auto("navigate to security section");
	await auto("return to dashboard");
}

Best Practices

1. Use Clear Destinations

// Good - Clear destination
await auto("go to the product catalog");

// Less Clear - Ambiguous
await auto("go to products");

2. Wait for Navigation

// Good - Ensures navigation is complete
await auto("go to dashboard and wait for load");

// Better - With verification
await auto("go to dashboard and verify page title");

3. Handle Dynamic Routes

// Good - Handles dynamic content
await auto("wait for URL to contain /dashboard");
await auto("verify dashboard elements are visible");

Error Handling

Handle common navigation scenarios:

try {
	await auto("go to restricted page");
} catch (error) {
	if (error.message.includes("unauthorized")) {
		// Handle authentication first
		await auto("go to login page");
		await auto("complete login process");
		await auto("go to restricted page");
	}
}

Troubleshooting

Common navigation issues and solutions:

  1. Page Load Issues
// Ensure page loads completely
await auto("go to page and wait for network idle");
await auto("verify page load is complete");
  1. Redirect Loops
// Handle multiple redirects
await auto("follow redirects until final page");
await auto("verify final destination");
  1. Authentication Required
// Check and handle auth state
await auto("verify login status");
await auto("complete authentication if needed");
await auto("proceed to requested page");

URL Patterns

Handling Different URL Types

// Absolute URLs
await auto("go to https://example.com/page");

// Relative URLs
await auto("navigate to /section/page");

// URL with fragments
await auto("go to /docs#section-1");

// Complex query parameters
await auto("go to /search?q=test&filters=active");

Dynamic URLs

// Template URLs
await auto("go to user profile number 123");
await auto("open order with ID ABC123");

// Query parameters
await auto("go to search results for 'example'");
await auto("navigate to filtered view with status=active");

Next Steps