2019-12-19 17:32:49 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-12-01 18:28:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|