# C4A-Script API Reference Complete reference for all C4A-Script commands, syntax, and advanced features. ## Command Categories ### 🧭 Navigation Commands Navigate between pages and manage browser history. #### `GO ` Navigate to a specific URL. **Syntax:** ```c4a GO ``` **Parameters:** - `url` - Target URL (string) **Examples:** ```c4a GO https://example.com GO https://api.example.com/login GO /relative/path ``` **Notes:** - Supports both absolute and relative URLs - Automatically handles protocol detection - Waits for page load to complete --- #### `RELOAD` Refresh the current page. **Syntax:** ```c4a RELOAD ``` **Examples:** ```c4a RELOAD ``` **Notes:** - Equivalent to pressing F5 or clicking browser refresh - Waits for page reload to complete - Preserves current URL --- #### `BACK` Navigate back in browser history. **Syntax:** ```c4a BACK ``` **Examples:** ```c4a BACK ``` **Notes:** - Equivalent to clicking browser back button - Does nothing if no previous page exists - Waits for navigation to complete --- #### `FORWARD` Navigate forward in browser history. **Syntax:** ```c4a FORWARD ``` **Examples:** ```c4a FORWARD ``` **Notes:** - Equivalent to clicking browser forward button - Does nothing if no next page exists - Waits for navigation to complete ### ⏱️ Wait Commands Control timing and synchronization with page elements. #### `WAIT