Get up and running with Hellcat in 5 minutes
Sign up at hellcat.pyrosec.gg/signup to get started. New accounts receive $10 in free credits.
Navigate to your dashboard and create a new API key:
Create a file called hello.hell:
workflow "Hello Hellcat" {
version = "1.0.0"
mode = browser_automation
step "Visit Website" {
navigate("https://example.com")
var title = document.title
console.log("Page title: " + title)
screenshot("example.png")
return { title: title }
}
}Execute your workflow using the CLI:
Check your workflow results in the dashboard or via API: