Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
a の値を設定するための次の KIF メソッドを見つけることができましたUISwitch。
UISwitch
tester.setOn(false, forSwitchWithAccessibilityLabel: "Enable Feature")
ただし、アサート/テスト アプローチで、KIF を使用して UISwitch の値を取得する方法を理解できませんでした。
何か案は?
私はそれを考え出した:
スイッチオンをテストするには:
tester.waitForViewWithAccessibilityLabel("Enable Feature", value: "1", traits: UIAccessibilityTraitNone)
スイッチオフをテストするには:
tester.waitForViewWithAccessibilityLabel("Enable Feature", value: "0", traits: UIAccessibilityTraitNone)