Skip to content

Zejnilovic/watir-scroll

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

watir-scroll Build Status Gem Version

Scrolling API for Watir.

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

Scrolling on Browser Window Level

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

Scrolling To Elements

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

button.scroll.to          # scrolls element to the top
button.scroll.to :center  # scrolls element to the center
button.scroll.to :bottom  # scrolls element to the bottom

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

About

Scrolling API for Watir

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 83.1%
  • HTML 10.4%
  • Shell 6.5%