About Me
Hey, I'm Zach. I'm a Staff Platform Engineer at Capsule with an SDET background, building core infrastructure, internal tooling, workflow orchestration, and sustainable test systems that largely maintain themselves.
I started in QA at Epic, fell in love with the problem-solving mindset, and taught myself to codeβeventually moving from writing test automation to building the platforms that power it.
Outside of work, you'll find me taking photography or improv classes, cooking something new, or helping run the Chicago Seleniumistas Meetup Group.
Experience
Speaking
This talk was also presented at the Berlin Continuous Testing Meetup
Stories
Automation Fun
Run this page through an automation tool β it detects which one you're using and serves a custom haiku. Pick your tool and language below to get a script to run.
pip install playwrightplaywright installtouch playwright_fun.pypython playwright_fun.py# File: playwright_fun.py
# Language: Python
from playwright.sync_api import sync_playwright
import getpass, os
with sync_playwright() as p:
browser = p.firefox.launch(headless=False)
context = browser.new_context()
context.add_cookies([
{"name": "automation_user", "value": getpass.getuser(), "url": "https://zattas.me"},
{"name": "automation_language", "value": "python", "url": "https://zattas.me"}
])
page = context.new_page()
try:
page.goto("https://zattas.me")
page.set_viewport_size({"width": 1920, "height": 1080})
input("Press Enter to close browser...")
finally:
browser.close()
os._exit(0)




