watir-scroll Build Status Gem Version

Scrolling API for watir-webdriver.

Installation

Add this line to your application's Gemfile:

gem 'watir-scroll'

And then execute:

$ bundle

Or install it yourself as:

$ gem install watir-scroll

Usage

button = browser.button(:text => 'Click')

browser.scroll.to :top      # scrolls to the top of the page
browser.scroll.to :center   # scrolls to the center of the page
browser.scroll.to :bottom   # scrolls to the bottom of the page
browser.scroll.to [10, 10]  # scrolls to coordinates x and y
browser.scroll.to button    # scrolls to element

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request