Code Monkey home page Code Monkey logo

ui-testing-swift's Introduction

UI Testing Helpers (Swift)

Helpers for UI Testing in Xcode 7 (Swift)


##Check existance of

###Static label let application = XCUIApplication() let label = application.staticTexts["label-accessibilityIdentifier"] XCTAssertTrue(label.exists, "Message for assert failure")

###Image let application = XCUIApplication() let image = application.images["image-accessibilityIdentifier"] XCTAssertTrue(image.exists, "Message for assert failure")

###Button

let application = XCUIApplication()
let button = application.buttons["button-accessibilityIdentifier"]
XCTAssertTrue(button.exists, "Message for assert failure")

###Navigation title

let application = XCUIApplication()
let navigationBar = application.navigationBars["navbar-title"]
XCTAssertTrue(navigationBar.exists, "Message for assert failure")


##Timing

###Wait for element to load let element = ... let kTimeoutSeconds = 10.0 // test fails after let predicate = NSPredicate(format: "exists == true") expectationForPredicate(predicate, evaluatedWithObject:element, handler: nil) waitForExpectationsWithTimeout(kTimeoutSeconds, handler: nil)

###Wait for specified time interval

extension XCTestCase {

	func waitForTimeInterval(interval:NSTimeInterval) -> Void {   
	    let kTimeoutSeconds = ... // seconds before test fails, should be > interval
	    let expectation = expectationWithDescription("Expectation")
	    let delayTime = dispatch_time(DISPATCH_TIME_NOW, Int64(interval * Double(NSEC_PER_SEC)))
	    dispatch_after(delayTime, dispatch_get_main_queue()) {
	        expectation.fulfill()
	    }
	    waitForExpectationsWithTimeout(kTimeoutSeconds, handler: nil)
	}
}

##Swipe

Swipe gestures which can be used with scrollView based elements

###Up let scrollView = // scrollView based element scrollView.swipeUp()

###Down let scrollView = // scrollView based element scrollView.swipeDown()

###Left let scrollView = // scrollView based element scrollView.swipeLeft()

###Right let scrollView = // scrollView based element scrollView.swipeRight()

ui-testing-swift's People

Contributors

mruvim avatar

Stargazers

 avatar

Forkers

lummyare

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.