🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

Q&A

1回答

1152閲覧

XCTestにてタイミングによってtapアクションがエラーになることがある

syosinsya_swift

総合スコア62

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

0グッド

0クリップ

投稿2019/12/10 07:04

前提・実現したいこと

XCTestのレコーディング機能を用いてテストコードを書いているのですが
タイミングによってtapアクションに入るとエラーになることがあります。
エラー箇所にデバックポイントを置いて一つずつ動かしていくと正常終了になります。
UI操作のタイミングに追いついていないのでしょうか?

発生している問題・エラーメッセージ

Failed to get matching snapshot: No matches found for Descendants matching type Alert from input {( Application, pid: 4599, label: 'XXXXX' )} Possibly caused by runtime issues: Automation type mismatch: computed WebView from legacy attributes vs ScrollView from modern attribute. Input attributes and values: { "XC_kAXXCAttributeAutomationType" = 46; "XC_kAXXCAttributeElementBaseType" = UIScrollView; "XC_kAXXCAttributeElementType" = WKScrollView; "XC_kAXXCAttributeTraits" = 8589934592; } Automation type mismatch: computed Other from legacy attributes vs WebView from modern attribute. Input attributes and values: { "XC_kAXXCAttributeAutomationType" = 58; "XC_kAXXCAttributeElementBaseType" = UIView; "XC_kAXXCAttributeElementType" = WKWebView; "XC_kAXXCAttributeTraits" = 146028888064; } Automation type mismatch: computed Other from legacy attributes vs WebView from modern attribute. Input attributes and values: { "XC_kAXXCAttributeAutomationType" = 58; "XC_kAXXCAttributeElementBaseType" = UIView; "XC_kAXXCAttributeElementType" = WKContentView; "XC_kAXXCAttributeTraits" = 146028888064; } See test report attachments for more detail.

該当のソースコード

func testExample() { print("testExample") let app = XCUIApplication() app.launch() // 設定ボタンを押下するとエラーのポップアップ画面を出す。 app.buttons["設定する"].tap() app.alerts["エラー"].scrollViews.otherElements.buttons["OK"].tap() }

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ソースコードを追加していただければ、もうちょっと分かりやすくなります。
syosinsya_swiftさんのテストコードをチェックするため、以下の関数をアプリに追加した:
テストは5回実行され、5回成功しました。

アラートのコード

swift

1 @IBAction func tapAlertButton(_ sender: Any) { 2 // ① UIAlertControllerクラスのインスタンスを生成 3 // タイトル, メッセージ, Alertのスタイルを指定する 4 // 第3引数のpreferredStyleでアラートの表示スタイルを指定する 5 let alert: UIAlertController = UIAlertController(title: "アラート表示", message: "保存してもいいですか?", preferredStyle: UIAlertController.Style.alert) 6 7 // ② Actionの設定 8 // Action初期化時にタイトル, スタイル, 押された時に実行されるハンドラを指定する 9 // 第3引数のUIAlertActionStyleでボタンのスタイルを指定する 10 // OKボタン 11 let defaultAction: UIAlertAction = UIAlertAction(title: "OK", style: UIAlertAction.Style.default, handler:{ 12 // ボタンが押された時の処理を書く(クロージャ実装) 13 (action: UIAlertAction!) -> Void in 14 print("OK") 15 }) 16 // キャンセルボタン 17 let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル", style: UIAlertAction.Style.cancel, handler:{ 18 // ボタンが押された時の処理を書く(クロージャ実装) 19 (action: UIAlertAction!) -> Void in 20 print("Cancel") 21 }) 22 23 // ③ UIAlertControllerにActionを追加 24 alert.addAction(cancelAction) 25 alert.addAction(defaultAction) 26 27 // ④ Alertを表示 28 present(alert, animated: true, completion: nil) 29 }

テストのコード

swift

1 func testExample() { 2 // UI tests must launch the application that they test. 3 let app = XCUIApplication() 4 app.launch() 5 6 app.buttons["Button"].tap() 7 app.alerts["アラート表示"].scrollViews.otherElements.buttons["OK"].tap() 8 // Use recording to get started writing UI tests. 9 // Use XCTAssert and related functions to verify your tests produce the correct results. 10 } 11

投稿2019/12/10 08:46

vanderlvov

総合スコア687

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

syosinsya_swift

2019/12/11 05:41

ありがとうございます。 私のソースコードもvanderlvov様と同じように書いているのですが、 どの辺りがポイントになるのでしょうか?
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問