//A method to navigate into the property details page
 internal void ClickAddNewProperty()
 {
     //Click on the Add New Property button to navigate to the Property Details Page
     AddNewPropertyButton.Click();
 }
 //Click add new property button
 internal void AddNewProperty()
 {
     AddNewPropertyButton.Click();
 }
 //Click add new property button
 internal void AddNewProperty()
 {
     Driver.WaitForElementClickable(Driver.driver, By.XPath("//html//div[@data-bind='visible : MainView']/div/div[@class='ui grid']//a[2]"), 5);
     AddNewPropertyButton.Click();
 }