Capybara::Lightpanda
A Capybara driver for Lightpanda, the fast headless browser built in Zig.
Self-contained — built-in CDP client, no external browser-client gem required.
Capybara → capybara-lightpanda →
Configuration · dual-driver setups · Turbo Rails · capability matrix · beta-testing guide
Requirements
| | |
|---|---|
| Ruby | ≥ 3.3 — CI covers 3.3 and 4.0 |
| Capybara | ≥ 3.0, < 5 |
| Platforms | Linux x86_64 · Linux aarch64 · macOS Apple Silicon · macOS Intel · Windows through WSL2 (no native Windows build upstream) |
An unsupported host raises UnsupportedPlatformError at boot, naming what it detected — it never fails halfway through a suite.
Install
Add this to your Gemfile and run bundle install:
group :test do
gem "capybara-lightpanda"
end
In your test setup:
require "capybara-lightpanda"
Capybara.javascript_driver = :lightpanda
# Rails system tests don't read Capybara.javascript_driver — use driven_by:
driven_by :lightpanda
[!TIP] The Lightpanda binary is auto-downloaded on first use — no separate install step needed.
[!IMPORTANT] Lightpanda is a headless agentic browser, not a layout engine. External
<link rel="stylesheet">are fetched and applied (the gem enables this by default), and@media/window.matchMedia()evaluate against thewindow_sizeyou configure — so a mobile-only CTA gated by@media (max-width: …)resolves at the width you ask for. What's missing is layout: nothing reflows,getBoundingClientRectstays synthetic, and there is no real scroll. Specs that assert on pixel geometry, scrolling, or screenshots — plus the two that catch people out, a second browser tab and a menu revealed purely by CSS:hover— should stay on Cuprite (or whichever full-browser driver you were already using). The per-spec dual-driver setup routes that minority to Cuprite and the structural majority to Lightpanda for speed.
[!TIP] For reproducible CI, pin the browser:
Capybara::Lightpanda::Binary.required_version = "0.3.7". Without a pin the driver tracks Lightpanda's rollingnightlytag, which moves under you. See Pinning the browser version.
Credits
- Lightpanda — the headless browser
- Capybara — the test framework
- Inspired by the Cuprite / Ferrum architecture and
lightpanda-ruby
Patterns adapted from these MIT-licensed projects (cookies API, frame switching, node call/error conventions, retry/event utilities) are acknowledged with the original copyright notices in NOTICE.md.
Contributing
Bug reports and pull requests are welcome on GitHub.
For beta-testing tips and how to file useful feedback, see BETA_TESTING.md.