public void ViewTopSellersProduct_PositiveTestCase()
        {
            LandingAsserts        landingAsserts        = new LandingAsserts();
            LandingActions        landingActions        = new LandingActions();
            ProductDetailsAsserts productDetailsAsserts = new ProductDetailsAsserts();

            // When
            NavigationUtils.GoToEcommerceShopHomePage();
            // Then
            landingAsserts.AssertTopSellersDisplayedCorrectly();
            // When
            landingActions.ClickOnAnyTopSellersProduct();
            // Then
            productDetailsAsserts.AssertDetailsPageIsOpened();
        }