selenium-webdriver
Ruby language bindings forSelenium WebDriver.
Selenium automates browsers for testing and web-based task automation.
Supports MRI >= 3.3.
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
-Getting Started -Ruby API Docs -Selenium Manager -Selenium Grid
Support
Contributing
Contributions are welcome viaGitHub pull requests. See thesource code for this binding.
Links
License
Licensed under theApache License 2.0.