示例#1
0
        public static void Aliexpress_E2E_Stock()
        {
            LandingPage landing = new LandingPage(driver);

            landing.ClosePopUpIfShown();
            landing.SearchItem("iphone");
            landing.ClickSearchButton();
            SearchPage search = new SearchPage(driver);

            search.NavigateToSecondPage();
            search.ClickProduct();
            ProductPage product = new ProductPage(driver);

            BrowserUtilities.SwitchToNewestTab(driver);
            product.ValidateStock();
        }