2016-12-01 18:28:57 +00:00
|
|
|
/**
|
|
|
|
|
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
|
|
|
|
|
|
|
|
|
The examples provided by Facebook are for non-commercial testing and evaluation
|
|
|
|
|
purposes only. Facebook reserves all rights not expressly granted.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
|
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import XCTest
|
|
|
|
|
|
|
|
|
|
final class LoadMoreViewControllerUITests: UITestCase {
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
func test_whenScrollingToTheBottom_thatNewItemsAreLoaded() {
|
2016-12-07 14:28:29 +00:00
|
|
|
let collectionViews = XCUIApplication().collectionViews
|
2016-12-01 18:28:57 +00:00
|
|
|
collectionViews.cells.staticTexts["Tail Loading"].tap()
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
// Swipe up until the last element before loading new data is visible
|
|
|
|
|
let lastElem = collectionViews.cells.staticTexts["20"]
|
2016-12-07 14:28:29 +00:00
|
|
|
while !lastElem.exists || !XCUIApplication().windows.element(boundBy: 0).frame.contains(lastElem.frame) {
|
2016-12-01 18:28:57 +00:00
|
|
|
collectionViews.element.swipeUp()
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
// Wait for item "21" to be loaded asynchronously
|
|
|
|
|
let newlyLoadedElement = collectionViews.cells.staticTexts["21"]
|
2017-05-16 14:30:08 +00:00
|
|
|
waitToAppear(element: newlyLoadedElement)
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|