Beispiel #1
0
            public void Sprint1_EditAPropertyBySearchAddress()
            {
                // Creates a toggle for the given test, adds all log events under it
                test = extent.StartTest("Edit a Property");

                // Create an class and object to call the method
                OwnerProperty obj = new OwnerProperty();

                obj.EditAProperty("TC_027_03");
            }
Beispiel #2
0
            public void Sprint1_EditAPropertyByUploadPicture()
            {
                // Creates a toggle for the given test, adds all log events under it
                test = extent.StartTest("Edit a Property by uploading a picture");

                // Create an class and object to call the method
                OwnerProperty obj = new OwnerProperty();

                obj.EditAProperty("TC_027_02");
            }
Beispiel #3
0
            public void Sprint1_EditAPropertyFromExcelData()
            {
                // Creates a toggle for the given test, adds all log events under it
                test = extent.StartTest("Edit a Property from Excel Data");

                // Create an class and object to call the method
                OwnerProperty obj = new OwnerProperty();

                obj.EditAProperty("TC_027_01");
            }
Beispiel #4
0
        public void ThenUserEditAPropertyFromExcelDataShouldBeSuccessfully()
        {
            // Creates a toggle for the given test, adds all log events under it
            test = extent.StartTest("Edit a Property from Excel Data");

            // Create an class and object to call the method
            OwnerProperty obj = new OwnerProperty();

            obj.EditAProperty("TC_027_01");

            TearDown();
        }
Beispiel #5
0
        public void ThenUserEditAPropertyByUploadingAPictureShouldBeSuccessfully()
        {
            // Creates a toggle for the given test, adds all log events under it
            test = extent.StartTest("Edit a Property by uploading a picture");

            // Create an class and object to call the method
            OwnerProperty obj = new OwnerProperty();

            obj.EditAProperty("TC_027_02");

            TearDown();
        }