- Generate OneShot js code geenrator - Introduced a new C4A-Script tutorial example for login flow using Blockly. - Updated index.html to include Blockly theme and event editor modal for script editing. - Created a test HTML file for testing Blockly integration. - Added comprehensive C4A-Script API reference documentation covering commands, syntax, and examples. - Developed core documentation for C4A-Script, detailing its features, commands, and real-world examples. - Updated mkdocs.yml to include new C4A-Script documentation in navigation.
19 lines
428 B
Plaintext
19 lines
428 B
Plaintext
# Simple form submission example
|
|
# This script fills out a contact form and submits it
|
|
|
|
GO https://example.com/contact
|
|
WAIT `form#contact-form` 10
|
|
|
|
# Fill out the form fields
|
|
CLICK `input[name="name"]`
|
|
TYPE "Alice Smith"
|
|
PRESS Tab
|
|
TYPE "alice@example.com"
|
|
PRESS Tab
|
|
TYPE "I'd like to learn more about your services"
|
|
|
|
# Submit the form
|
|
CLICK `button[type="submit"]`
|
|
|
|
# Wait for success message
|
|
WAIT "Thank you for your message" 5 |