我在楼层板上绘制的 uistackview 上的数组中有一个视图和五个按钮:但是,当我记录时,它总是点击第三个按钮,我无法随机选择要点击的按钮代码是:
let app = XCUIApplication()
let oneElement = app.otherElements["First"]
let twoElement = app.otherElements["Two"]
if oneElement.exists
{
oneElement.tap()
}
if twoElement.exists
{
twoElement.tap()
}
TwoElement 是点击按钮的那个我如何将点击指向按钮 1 或 0?