Я пытаюсь провести рефакторинг теста UI моего проекта, чтобы использовать шаблон Robot. Но кажется, что он не может показать, какая строка в коде - та, где есть ошибка. Вот скриншот:
Как вы можете видеть здесь, testShowAppHealthAndBackWithoutRobot()
может показывать ошибку в красной строке, в то время как testShowAppHealthAndBack()
нет .
Вот код робота:
class Robot {
let app: XCUIApplication
init(app: XCUIApplication) {
self.app = app
}
func tap(_ element: XCUIElement, timeout: TimeInterval = 5) {
guard assertExists(element, timeout: timeout), element.isHittable else {
XCTFail("Element: \(element) is not hittable!")
return
}
element.tap()
}
func assertExists(_ element: XCUIElement, timeout: TimeInterval = 5) -> Bool {
guard element.waitForExistence(timeout: timeout) else {
XCTFail("Element: \(element) does not exist!")
return false
}
return true
}
func assertExists(_ elements: [XCUIElement], timeout: TimeInterval = 5) {
for _ in 0 ... Int(timeout) {
if elements.filter({ $0.exists == false }).isEmpty {
return
}
Thread.sleep(forTimeInterval: 1)
}
XCTFail("Elements: \(elements) do not exist!")
}
}
class MainPageRobot: Robot {
lazy var mainTitleText = app.staticTexts["My App"]
lazy var appHealthButton = app.buttons["App Health"]
func isInMainPageViewController() -> Self {
_ = assertExists(mainTitleText)
return self
}
func tapAppHealthButton() -> Self {
tap(appHealthButton)
return self
}
}
class AppHealthRobot: Robot {
lazy var navigationTitle = app.navigationBars["App Health"].staticTexts["App Health"]
lazy var backButton = app.staticTexts["Red this shit up"]
func isInAppHealthViewController() -> Self {
assertExists(navigationTitle, line: line)
return self
}
func tapBackButton() -> Self {
tap(backButton)
return self
}
}
Итак, мой вопрос: как мне показать ошибочные линии в тестовых функциях с использованием паттерна робота? Спасибо.