目前我正在使用:
XCUIElement* saveButton = self.app.navigationBars[@"TSSIDAddCardView"].buttons[@"Save"]; XCTAssertEqual(saveButton.hittable,YES);
但是,这始终返回YES. .exists测试也返回YES.
有谁知道如何进行正确的测试?
有了它,您可以检查它是否已启用.
就像是:
UIBarButtonItem *saveButton = self.app.navigationBars[@"TSSIDAddCardView"].buttons[@"Save"].value; XCTAssertTrue(saveButton.enabled);