PopperFramework is a java framework which allows you to create PageObjects for your webapplication-tests in a declarative way. That means you just have to define an interface defining the structure of your website and add some annotation with the basic information like locators. PopperFramework will generate the implementation of that PageObject for you.
Key-Goal of PopperFramework is to allow you as a developer of sureface-tests to concentrate on your business => writing PageObjets and Tests, not wasting time by writing boilerplate code.
PopperFramework uses WebDriver-API to implement your PageObjects but its API is completly vendor-independent. So when there comes something better than WebDriver you change the implementation of PopperFramework and change to the vendor you need.
PopperFramework is highly configurable with a lot of hooks which allow you to customize PopperFramework behaviour to your needs.
Features
- Full declarative description of PageObjects
- Describing PageObjects by only using interfaces
- Comprehensive errormessages when elements can't be found on page
- Abstraction of the used Browser-Driver (e.g. WebDriver)
- Support for working with tables
- Support for irregular appearance of elements on website (like polls, nag-messages, ...)
- Support for test-configuration by property files
- Support for unittesting of PageObjects
- Easy as can be integration into existing projects
- Unittested migration pathes from legacy PageObjects to declarative PageObjects
- PopperFramework is well-documented by exmaples