selenium-webdriver
Ruby language bindings for Selenium WebDriver. Selenium automates browsers for testing and web-based task automation.
Supports MRI >= 3.2.
Installation
gem install selenium-webdriver
Quick Start
require "selenium-webdriver"
driver = Selenium::WebDriver.for :chrome
begin
driver.get "https://www.selenium.dev"
puts driver.title
ensure
driver.quit
end
Selenium Manager automatically handles browser driver installation — no manual driver setup required.
Documentation
Support
Contributing
Contributions are welcome via GitHub pull requests. See the source code for this binding.
Links
License
Licensed under the Apache License 2.0.