What problem does it solve? Writing Robot Framework test scripts by hand from checklist items is slow and error-prone, especially when locators must match the actual frontend code and project conventions must be enforced consistently. ## Core Features & Use Cases - Checklist-to-RF Conversion: Transforms natural-language Checklist items into structured Robot Framework test cases with Settings, Variables, and Test Cases sections. - Locator Verification: Cross-checks every locator against the actual Vue page components under frontend/src/pages/ to avoid brittle selectors. - Convention Enforcement: Applies project rules such as Browser library preference, no Sleep statements, no absolute XPath, and mandatory [Documentation] and [Tags] on every test case. - Use Case: Given a Checklist record describing a login flow, generate a .robot suite that uses role-based locators verified against the real login page, with shared steps extracted into a .resource file. ## Quick Start Convert this checklist item into a Robot Framework test case following the project conventions and verify the locators against the corresponding Vue page.