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"); }
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"); }
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"); }
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(); }
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(); }