2019-12-19 17:32:49 +00:00
|
|
|
/*
|
2023-04-06 09:44:16 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2019-12-19 17:32:49 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
2023-10-14 05:50:38 +00:00
|
|
|
// Swipe up until the last item in the list is on-screen
|
|
|
|
|
var numberOfTries = 0
|
|
|
|
|
let lastElem = collectionViews.cells.staticTexts["15"]
|
|
|
|
|
while !lastElem.isHittable {
|
2016-12-01 18:28:57 +00:00
|
|
|
collectionViews.element.swipeUp()
|
2023-10-14 05:50:38 +00:00
|
|
|
numberOfTries += 1
|
|
|
|
|
if numberOfTries >= 10 {
|
|
|
|
|
break
|
|
|
|
|
}
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2023-10-14 05:50:38 +00:00
|
|
|
// Wait for the following item to be loaded asynchronously
|
|
|
|
|
let newlyLoadedElement = collectionViews.cells.staticTexts["16"]
|
|
|
|
|
waitToAppear(element: newlyLoadedElement, timeout: 30.0)
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|