Not a huge release, mostly a few methods added. Most notably: touch action methods for elements like:
element.tap()
element.zoom()
element.pinch()
element.swipe(direction, int)
And the swipe method gets a direction parameter:
element.swipe(SwipeElementDirection.RIGHT,1000);
element.swipe(SwipeElementDirection.LEFT,1000);
element.swipe(SwipeElementDirection.UP,1000);
element.swipe(SwipeElementDirection.DOWN,1000);
2.1.0
- Moved hasAppString() from AndroidDriver to AppiumDriver
- Fixes to PageFactory
- Added @AndroidFindAll and @iOSFindAll
- Added toggleLocationServices() to AndroidDriver
- Added touchAction methods to MobileElement, so now you can do element.pinch(), element.zoom(), etc.
- Added the ability to choose a direction to swipe over an element. Use the SwipeElementDirection enums: UP, DOWN, LEFT, RIGHT