//Go to my properties page
        public void GoToMyPropertiesPage()
        {
            InstructionSkipButton.Click();
            Thread.Sleep(2000);

            //Click on the Owners tab
            Driver.WaitForElementVisible(Driver.driver, By.XPath("//a[@href='/Home/Dashboard']"), 25);
            OwnerTab.Click();

            //Select properties page
            Driver.WaitForElementVisible(Driver.driver, By.XPath("html/body/div[1]/div/div[2]/div[1]/div/a[1]"), 15);
            PropertiesPage.Click();
        }
 /// <summary>
 /// Notifies the <see cref="OwnerTab"/> and <see cref="OwnerPanel"/> about changes in the <see cref="RibbonItemCollection"/>.
 /// </summary>
 internal override void UpdateRegions()
 {
     try
     {
         OwnerTab?.UpdatePanelsRegions();
         if (Owner != null && Owner.IsDisposed == false)
         {
             Owner.UpdateRegions();
             Owner.Invalidate();
         }
     }
     catch
     {
         // ignored
     }
 }