Sha256: aa84b6de2459fbb1b7496a81533822d66a784a70e077b56e2eed8429988969ca
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
# Pagetience A simple gem to verify pages and important elements are loaded. ## Installation Add this line to your application's Gemfile: ```ruby gem 'pagetience' ``` And then execute: $ bundle install Or install it yourself as: $ gem install pagetience ## Usage To use **Pagetience**, simply `include Pagetience` in your page object class and then use the `required` method to set which elements must be visible on the page for it to be considered loaded. ```ruby class GooglePage include PageObject include Pagetience text_field :search, name: 'q' required :search end ``` When an instance of your page object is created then the required elements will be checked for. #### Adjusting the Timeout/Polling You can use the `waiting` method to specify how long you want to wait and, optionally, at what interval to poll the page for element visibility. The default timeout is **30** seconds, polling every second. ```ruby class GooglePage include PageObject include Pagetience text_field :search, name: 'q' required :search waiting 60, 5 # wait up to 60 seconds, polling every 5 seconds end ``` ## Notes/Todo/Issues ### IMPORTANT Currently, this gem only works with the [page-object](https://github.com/cheezy/page-object)gem. It's a high priority to make working with other page object/webdriver libraries easier. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/dmcneil/pagetience. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pagetience-0.1.0 | README.md |