另外,在某些测试场景中可能需要重复进行某一个功能点的操作。虽然可以将需要重复的步骤多写几次,但会显得比较累赘,特别是重复次数较多时更是麻烦。
AppiumBooster
的做法是,在测试用例的步骤中可指定执行次数,并以|
进行分隔,如下例所示。
1
2
3
4
5
6
|
Send random text messages:
- SettingsFeatures | initialize first startup
- AccountFeatures | login with valid test account
- MessageFeatures | enter follower user message page
- MessageFeatures | send random text message | 100
|
原文转自:http://debugtalk.com/post/build-ideal-app-automation-test-framework/