Introduction to AppiumBooster
AppiumBooster AppiumBooster helps you to write automation testcases in yaml format or csv tables, without writing a snippet of code.
write testcases in yaml (recommended) Take DebugTalk+ Discover’s login and logout function as an example.
In order to test these functions above, you can write testcases in yaml format like this.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # ios/testcases/Account.yml --- AccountTestcases: login with valid account: - AccountSteps | enter My Account page - AccountSteps | enter Login page - AccountSteps | input EmailAddress - AccountSteps | input Password - AccountSteps | login - AccountSteps | close coupon popup window(optional) logout: - AccountSteps | enter My Account page - SettingsSteps | enter Settings page - AccountSteps | logout In the testcases, each step is combined with two parts, joined by a separator |.