1// FormFlowTests — Page Object Model
2final class FormFlowTests: BaseTest {
3
4 func test_formTesting_validationError() {
5 formPage.tapSubmit()
6 formPage.assertValidationError()
7 }
8
9 func test_formWizard_completeFlow() {
10 formPage.fillAndSubmit(name: "Jane")
11 formPage.assertSuccess()
12 }
13}