geb-skill
Installation
SKILL.md
Geb Automation Skill
For TestMu AI cloud execution, see reference/cloud-integration.md and shared/testmu-cloud-reference.md.
Core Patterns
Basic Test (Spock)
import geb.spock.GebSpec
class LoginSpec extends GebSpec {
def "login with valid credentials"() {
when:
to LoginPage
emailInput.value("user@test.com")
passwordInput.value("password123")
loginButton.click()