Rapid is a UI test development framework for Swift (and Objective-C soon!). Inspired by Quick and Nimble.
Sample Podfile
:
platform :ios, '10.0'
use_frameworks!
def test_pods
# define test pod imports
pod 'RapidTests', '1.2.1'
end
abstract_target 'Common' do
# other common target pods here
pod 'RapidA11y', '1.2.1'
# app target which picks up RapidA11y pod and any other common pods
target 'Example' do
end
# test target gets RapidTests pod added (+ Quick/Nimble)
# it still does get RapidA11y and common pods as well.
target 'ExampleUITests' do
test_pods
end
end
With the RapidA11y
(A11y is for Accessibility, A-(11 letters)-y) pod being needed for common app targets (whichever ones will have access to elements that need to be made visible to the testing harness)
With the RapidTests
pod being needed only in test targets (mainly the UI test target, to be specific).
Once Podfile
setup for your project, run $ pod install
in the directory of your Podfile (Troubleshooting help for this step from CocoaPods)
SUPER SIMPLE 5 STEP PROCESS:
- Install pod - accessibility pod for application targets, test pod for test targets
- Implement the
RapidAccessible
protocol for views you want Rapid to have access to, and don't forget to specifyaccessibilityControls
defined by theRapidIdentifiable
protocol. - Call
applyAccessibility()
inviewDidLoad()
of view controllers implementingRapidAccessible
. - Get VoiceOver for free and easy testability of your code immediately! 💡🔓
- Profit 🎉🎉🎉
Example simplicity (fully accessible view controller with colored buttons):
class ViewController: UIViewController, RapidAccessible {
@IBOutlet weak var buttonA: UIButton!
@IBOutlet weak var buttonB: UIButton!
@IBOutlet weak var buttonC: UIButton!
@IBOutlet weak var buttonD: UIButton!
static func rapidControlsInformation() -> Array<RapidControlInformation> {
var buttonInfo = UIButton.accessibilityProperties
return Array(0...3).map {
index in
buttonInfo.index = index
return buttonInfo
}
}
public override var accessibilityControls: Array<NSObject> {
get {
return [buttonA, buttonB, buttonC, buttonD]
}
}
public override func viewDidLoad() {
super.viewDidLoad()
applyAccessibility()
}
}
Please visit our FAQ to see all commonly asked questions and their answers.
To see what we've changed in the past, check out our Changelog.
Copyright 2017 Creatubbles
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
See also the LICENSE
file for details.