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.
Objective C の UI テストでボタンにタップ イベントを実装する方法を考えています。サンプル コード スニペットはかなりのものです。Swiftにある例をいくつか見つけました。目標 c を支援し、導くことができる人
let app = XCUIApplication() app.launch() let button = app.buttons["Start"] button.tap()
目的cでこの同様の実装が必要です。
やっと答えが出たので、
XCUIApplication *app = [[XCUIApplication alloc] init]; [app.buttons[@"Start"] tap];