Auto-Browse provides natural language commands for typing text and interacting with input fields. This guide covers various typing scenarios and best practices.
// Type in a simple input fieldawait auto('type "Hello World" in the search box');// Type in a labeled fieldawait auto('type "john@example.com" in the email field');// Type in a form inputawait auto('type "John Doe" in the name input');
// Type in text fieldsawait auto('type "John Doe" in the name field');await auto('type "john@example.com" in the email field');// Type in password fieldsawait auto('type "mypassword123" in the password field');// Type in textareasawait auto('type "This is a longer description" in the description textarea');// Type with context for precisionawait auto('type "Admin" in the username field in the login form');await auto('type "123 Main St" in the shipping address field');