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["Username"]
usernameTextField.tap()
usernameTextField.typeText("[email protected]")
let passwordTextField = app.textFields["Password"]
passwordTextField.tap()
passwordTextField.typeText("abc123")
app.buttons["Login" ].tap()
//let loginButton = app.staticTexts["Login"]
//XCTAssertEqual(loginButton.exists, true)
app.navigationBars["UIView"].buttons["Back"].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["Login"]
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]