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.
// Navigate to a URLawait auto("go to https://example.com");// Navigate using page nameawait auto("go to the home page");// Navigate using relative pathsawait auto("go to /products");
// Navigate to specific pagesawait auto("go to the login page");await auto("navigate to the about page");await auto("visit the contact page");// Browser history navigationawait auto("go back");await auto("go forward");await auto("refresh the page");// Navigate with contextawait auto("go to the settings page in account section");await auto("navigate to the first product's details page");