Stable Build Release: v0.37.1
Automated Web Driver Engine
High-performance W3C WebDriver server implementation for cross-platform headless browser testing, web crawling, and end-to-end integration automation.
W3C Standard Compliance
Strict implementation of HTTP endpoint standards specified for W3C automated browser controls.
Headless Performance
Optimized binary overhead suitable for CI/CD pipelines and high-throughput background automation jobs.
Cross-Platform Support
Distributions compiled for x86_64, AArch64 (ARM64), and modern 64-bit/32-bit operating systems.
GeckoDriver v0.37.1 Binary Releases
Direct Official GitHub Mirrors • SHA-256 Verified Distributions
| Operating System | Architecture | Package Archive | SHA-256 Checksum | Download Link |
|---|---|---|---|---|
| Linux | x86_64 | geckodriver-v0.37.1-linux64.tar.gz |
99f123d2e676156e52292f7c006509f63eb05c487372d8e64c39050d2cf017c6
|
3.2 MB |
| Linux | aarch64 (ARM64) | geckodriver-v0.37.1-linux-aarch64.tar.gz |
0ef0edebba59aeb7b17d59fbd7c36a3efb343cb4bd290ca8bd151dcbdcd120d2
|
3.0 MB |
| Windows | x86_64 (64-bit) | geckodriver-v0.37.1-win64.zip |
155606e98ca74ce25ee743ad07bf54125b2f2d980f74577bf641748281dc67bb
|
3.4 MB |
| Windows | x86 (32-bit) | geckodriver-v0.37.1-win32.zip |
4f7e52a92e1069ba305a463c6bc43c16dd197ef44b0a7019685a2ceefaa9601d
|
3.1 MB |
| Windows | aarch64 (ARM64) | geckodriver-v0.37.1-win-aarch64.zip |
34b54e3eddb39c733f380edaa6c9ef5eb730f7beceae2192cbbe9d09c3bf79bf
|
3.0 MB |
| macOS | x86_64 (Intel) | geckodriver-v0.37.1-macos.tar.gz |
0a7f28682dc1ec6338b7e283f5e55e094c9258286eb971bb51ec5a4b752945d8
|
3.6 MB |
| macOS | aarch64 (Apple Silicon) | geckodriver-v0.37.1-macos-aarch64.tar.gz |
9db8d78942bfa88bd5e5055b8ef9ea2a62aeec72f09bd11fa0fb3ae70dddd0f9
|
3.4 MB |
Python Integration Example
from selenium import webdriver
from selenium.webdriver.firefox.service import Service
# Point service to locally downloaded geckodriver binary
service = Service(executable_path="/usr/local/bin/geckodriver")
# Initialize Firefox Driver instance
driver = webdriver.Firefox(service=service)
# Execute automation task
driver.get("https://example.com")
print(f"Current Page Title: {driver.title}")
driver.quit()