watir-webdriver

Watir implementation built on WebDriver's Ruby bindings. See http://rubyforge.org/pipermail/wtr-development/2009-October/001313.html.

Build Status

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 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

Dependencies

Note on Patches/Pull Requests

Copyright

Copyright (c) 2009-2012 Jari Bakken. See LICENSE for details.