public override void TestSetup()
        {
            base.TestSetup();

            MultipleEntryPage       = new MultipleEntryPage(App);
            OptionSelectionPage     = new OptionSelectionPage(App);
            PickEntryReturnTypePage = new PickEntryReturnTypePage(App);
        }
Ejemplo n.º 2
0
        public void VerifyKeyboardReturnType(ReturnType returnType, CustomEntryType customEntryType)
        {
            //Arrange
            var expectedCustomizableEntryPlaceholder = returnType.ToString();

            //Act
            OptionSelectionPage.SetEntryPickerType(customEntryType);
            OptionSelectionPage.TapOpenSelectEntryPageButton();

            PickEntryReturnTypePage.SelectReturnTypeFromPicker(returnType);

            //Assert
            var retrievedCustomizableEntryPlaceholder = PickEntryReturnTypePage.CustomizableEntryPlaceholder;

            Assert.AreEqual(expectedCustomizableEntryPlaceholder, retrievedCustomizableEntryPlaceholder);
        }