selenium
Version, currently 0.2.07 versions
github.com/amberframework/selenium-webdriver-crystal
Selenium Webdriver client
Nothing has been indexed for 0.2.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
selenium:
github: amberframework/selenium-webdriver-crystal
version: ~> 0.2.0Then run:
shards installshard.yml
No shard.yml has been indexed for 0.2.0. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
Selenium::Webdriver
Selenium Webdriver bindings for the Crystal programming language.
WARNING: this shard initialy implemented the now obsolete JsonWireProtocol, but should be compatible with the W3C Webdriver spec.
Known working combinations are Selenium 2.48.2 and Firefox 34 (JSONWireProtocol), as well as Selenium 3.5.3, Firefox 55 and the now required Geckodriver 0.18.0 (W3C Webdriver).
See https://github.com/matthewmcgarvey/selenium.cr for an up-to-date library (as of June 2020) that implements the W3C Webdriver spec directly.
Usage
Only the Remote driver is available, so you need to download the release Selenium Standalone Server then start it (adjust the version):
$ java -jar selenium-server-standalone-2.48.2.jar
You may now start a session, which will launch a browser, and start interacting with it:
require "selenium/webdriver"
capabilities = {
browserName: "firefox",
platform: "ANY"
}
driver = Selenium::Webdriver.new
session = Selenium::Session.new(driver, capabilities)
session.url = "http://crystal-lang.org/api"
pp session.url # => "http://crystal-lang.org/api"
input = session.find_element(:css, "input[type=search]")
input.send_keys("Client")
sleep 1
search_list = session.find_element(:class_name, "search-list")
types = search_list.find_elements(:css, "li.search-result--type")
pp count = types.size # => 6
session.stop
Reference
License
Distributed under the Apache License, Version 2.0
Author
- Julien Portalier — @ysbaddaden
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.2.0- Tagged
- Nov 15, 2022
- Commit
dad4b52a1b15- Indexed
- not yet
Dependents
Repository
github.com/amberframework/selenium-webdriver-crystal
Metadata
- Created
- Aug 16, 2026
- Updated
- Sep 24, 2026
- Synced
- Sep 24, 2026
- Versions
- 7