菜鸟教程小白 发表于 2022-12-13 15:37:45

ios - XCTAssertEqual 测试在 ios 的 UI 测试中不起作用


                                            <p><p>我有下面的 UI,我为此编写了 UI 测试用例-
<a href="/image/cVS1T.png" rel="noreferrer noopener nofollow"><img src="/image/cVS1T.png" alt="enter image description here"/></a> </p>

<p>如果我没有注释注释代码,我的测试不会成功,否则它会成功 (XCTAssertEqual)
我可以知道如何检查屏幕上是否存在登录按钮,以及为什么 XCTAssertEqual 不起作用</p>

<pre><code>func testExample() {

      let usernameTextField = app.textFields[&#34;Username&#34;]
      usernameTextField.tap()
      usernameTextField.typeText(&#34;[email protected]&#34;)

      let passwordTextField = app.textFields[&#34;Password&#34;]
      passwordTextField.tap()
      passwordTextField.typeText(&#34;abc123&#34;)

      app.buttons[&#34;Login&#34; ].tap()

                //let loginButton = app.staticTexts[&#34;Login&#34;]
                //XCTAssertEqual(loginButton.exists, true)

      app.navigationBars[&#34;UIView&#34;].buttons[&#34;Back&#34;].tap()


    }
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在查找登录按钮时,使用 <code>buttons</code> 而不是 <code>staticTexts</code>。文本标签是按钮组件的一部分。</p>

<pre><code>let loginButton = app.buttons[&#34;Login&#34;]
XCTAssertEqual(loginButton.exists, true)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - XCTAssertEqual 测试在 ios 的 UI 测试中不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/45651460/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/45651460/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - XCTAssertEqual 测试在 ios 的 UI 测试中不起作用