README.md in pagetience-0.1.0 vs README.md in pagetience-0.2.0
- old
+ new
@@ -1,8 +1,12 @@
# Pagetience
-A simple gem to verify pages and important elements are loaded.
+[![Build Status](https://travis-ci.org/dmcneil/pagetience.svg?branch=master)](https://travis-ci.org/dmcneil/pagetience)
+Pronounced like "patience".
+
+Using a simple DSL, you can declare which of your page object elements must be present and visible on the page before your code can consider it **loaded**.
+
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'pagetience'
@@ -45,12 +49,18 @@
required :search
waiting 60, 5 # wait up to 60 seconds, polling every 5 seconds
end
```
+## Supported Platforms
+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.
+
## 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.
+1. Add platform support for Selenium WebDriver
+2. Add platform support for Watir WebDriver
+3. SitePrism?
+4. Documentation
+5. Organize unit tests
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/dmcneil/pagetience.