2

iOS UI テスト用に次のテスト ヘルパー関数があります。

func waitForElementToHaveKeyboardFocus(element: XCUIElement) {
    self.expectationForPredicate(NSPredicate(format:"valueForKey(\"hasKeyboardFocus\") == true"), evaluatedWithObject:element, handler: nil)
    self.waitForExpectationsWithTimeout(5, handler: nil)
}

私のテストでは、次のものがあります。

let usernameTextField = app.textFields["Username"]
let passwordTextField = app.secureTextFields["Password"]
waitForElementToHaveKeyboardFocus(usernameTextField)

テストは次のエラーで失敗します。

error: -[ExampleAppUITests.ExampleAppUITests testExampleApp] : failed: caught "NSUnknownKeyException", "[<_NSPredicateUtilities 0x10e554ee8> valueForUndefinedKey:]: this class is not key value coding-compliant for the key hasKeyboardFocus."

失敗時にテストにブレークポイントを設定しvalueForKey("hasKeyboardFocus")、フォーカスされたフィールドとフォーカスされていないフィールドの両方を手動で呼び出すと、正しい動作が得られるようです。

(lldb) po usernameTextField.valueForKey("hasKeyboardFocus")
    t =    51.99s     Find the "Username" TextField
    t =    51.99s         Use cached accessibility hierarchy for ExampleApp
    t =    52.00s         Find: Descendants matching type TextField
    t =    52.01s         Find: Elements matching predicate '"Username" IN identifiers'
▿ Optional<AnyObject>
  - Some : 1

(lldb) po passwordTextField.valueForKey("hasKeyboardFocus")
    t =   569.99s     Find the "Password" SecureTextField
    t =   569.99s         Use cached accessibility hierarchy for ExampleApp
    t =   570.01s         Find: Descendants matching type SecureTextField
    t =   570.01s         Find: Elements matching predicate '"Password" IN identifiers'
▿ Optional<AnyObject>
  - Some : 0

UIテストでvalueForKey作品XCUIElementを作ることはできますか?NSPredicateこれを行う別のエレガントな方法はありますか?

4

2 に答える 2

2

valueForKey("")メソッドへのクロージャーとしてステートメントを渡す場合、次のようなことができます。

func waitForElementToHaveKeyboardFocus(statement statement: () -> Bool, timeoutSeconds: Int)
{
    var second = 0
    while statement() != true {
        if second >= timeoutSeconds {
            XCTFail("statement reached timeout of \(timeoutSeconds) seconds")
        }

        sleep(1)
        second = second + 1
    }
}

そして、次のようにテストで使用します。

waitForElementToHaveKeyboardFocus(statement: { usernameTextField.valueForKey("hasKeyboardFocus") as? Bool == true }, timeoutSeconds: 10)

このメソッドの名前をより一般的なものに変更すると、渡されたクロージャが検証されます。お役に立てれば!

于 2016-09-01T16:31:37.077 に答える
2

述語が少しずれているようです。次のように変更してみてください。

NSPredicate(format: "hasKeyboardFocus == true"), evaluatedWithObject:element, handler: nil)

valueForKey述語を作成するときに、その部分を渡す必要はありません。

于 2016-09-02T18:32:02.447 に答える