/// <summary>
        /// Hovers over the image of the window of the specified id.
        /// </summary>
        /// <param name="windowId"></param>
        /// <returns></returns>
        public ModelWindowGalleryPage HoverOverImage(string windowId)
        {
            ArgumentGuard.NotNull(windowId, nameof(windowId));

            SeleniumUtils.HoverOverElement(
                Driver, Driver.FindElement(By.CssSelector(CssSelector_(windowId))));
            return(this);
        }