Sha256: 0852a8b6c94cd808ff4168e32910e9a8c1a3c5d6eaf6b6dd9e47e53d6d922620
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
watir-webdriver =============== Watir implementation built on WebDriver's Ruby bindings. See http://rubyforge.org/pipermail/wtr-development/2009-October/001313.html. [![Build Status](https://secure.travis-ci.org/jarib/watir-webdriver.png)](http://travis-ci.org/jarib/watir-webdriver) API docs -------- http://jarib.github.com/watir-webdriver/doc/ Example ------- ```ruby require 'watir-webdriver' browser = Watir::Browser.new :firefox browser.goto "http://google.com" browser.text_field(:name => 'q').set("WebDriver rocks!") browser.button(:name => 'btnG').click puts browser.url browser.close ``` Description ----------- The file in lib/watir/elements/generated.rb is autogenerated from the HTML5 spec. This is done by extracting the IDL parts from the spec and processing them with the WebIDL gem (link below). Specs ----- watir-webdriver uses [watirspec](http://github.com/jarib/watirspec) for testing. After cloning, you should fetch the submodule: git submodule init && git submodule update Specs specific to watir-webdriver are found in spec/*_spec.rb, with watirspec in spec/watirspec. See also -------- * http://github.com/jarib/webidl * http://github.com/jarib/watirspec/tree/watir2 * http://selenium.googlecode.com Dependencies ------------ * selenium-webdriver Note on Patches/Pull Requests ----------------------------- * Fork the project. * Make your feature addition or bug fix. * Add tests for it. This is important so I don't break it in a future version unintentionally. * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) * Send me a pull request. Bonus points for topic branches. Copyright --------- Copyright (c) 2009-2011 Jari Bakken. See LICENSE for details.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.4.1 | README.md |