UI Testing in Xcode was introduced in Xcode 7, allowing a developer to write UI tests in Swift/Objective-C. The primary method of interacting with an app is via an instance of XCUIApplication.
I am trying to write a test case using the new UI Testing available in Xcode 7 beta 2. The App has …
ios ios9 xcode-ui-testing xcode7-beta2 xctwaiterIs there an API call within XCTest that I can put into the setUP() or tearDown() to reset the app …
swift xcode7 xctest xcode-ui-testingIn my test I have a text field with a pre-existing text. I want to delete the content and type …
swift uitextfield xcode7 uikeyboard xcode-ui-testingThis is my case: let passwordSecureTextField = app.secureTextFields["password"] passwordSecureTextField.tap() passwordSecureTextField.typeText("wrong_password") //here is an error UI …
ios xcode swift ios9 xcode-ui-testingSo with the new xcode update apple has revamped the way we do UI testing. In instruments we used java …
ios objective-c xcode-ui-testingI am trying to dismiss the search field by tapping 'Cancel' button in search bar. The test case is failing …
xcode xcode7 xcode-ui-testingI am using the UI Test Case class integrated in Xcode and XCTest to test app UI. I want to …
ios swift xcode-ui-testingI am writing UI test cases using the new Xcode 7 UI Testing feature. At some point of my app, I …
ios objective-c xctest xcode7 xcode-ui-testingI want to verify if an element is visible or not depending on its .hidden property but I don't find …
xcode swift ui-testing xcode-ui-testingI've got a test like below: let navnTextField = app.textFields["First Name"] let name = "Henrik" navnTextField.tap() navnTextField.typeText("Henrik") …
uitextfield ios9 xctest xcode-ui-testing