public void GoToAccountPageAndMyLists() { homePage = new HomePage(chromeDriver); homePage.GoToMainPage(); fillEmailPage = homePage.GoToFillEmailPage(); fillPasswordAndLogin = fillEmailPage.FillEmailAndContinue(LoginData[0]); fillPasswordAndLogin.FillPasswordAndLogin(LoginData[1]); yourListPage = new YourListPage(chromeDriver); yourListPage.GoToMyList(); }
public void ReturnShopingListAndClickTopSearchResult() { homePage = new HomePage(chromeDriver); homePage.GoToMainPage(); fillEmailPage = homePage.GoToFillEmailPage(); fillPasswordAndLogin = fillEmailPage.FillEmailAndContinue(LoginData[0]); fillPasswordAndLogin.FillPasswordAndLogin(LoginData[1]); yourListPage = new YourListPage(chromeDriver); yourListPage.GoToMyList(); ASINValue = yourListPage.ClickTopSearchButtonAndAssert7Result(); log.Info("ASIN value was obtained to find the product directly in the search."); Assert.Pass("Arama için ürün id : " + ASINValue.Trim()); }
public void DeleteItemFromWishList() { homePage = new HomePage(chromeDriver); homePage.GoToMainPage(); fillEmailPage = homePage.GoToFillEmailPage(); fillPasswordAndLogin = fillEmailPage.FillEmailAndContinue(LoginData[0]); fillPasswordAndLogin.FillPasswordAndLogin(LoginData[1]); yourListPage = new YourListPage(chromeDriver); yourListPage.GoToMyList(); string deletedMessage = yourListPage.DeleteToWishList(); Assert.AreEqual(deletedMessage, "Deleted"); log.Info("Idea list deleted from wish list."); }
public void MoveToWishList() { homePage = new HomePage(chromeDriver); homePage.GoToMainPage(); fillEmailPage = homePage.GoToFillEmailPage(); fillPasswordAndLogin = fillEmailPage.FillEmailAndContinue(LoginData[0]); fillPasswordAndLogin.FillPasswordAndLogin(LoginData[1]); yourListPage = new YourListPage(chromeDriver); yourListPage.GoToMyList(); string successMessage = yourListPage.AddToWishList(); Assert.AreEqual(successMessage, "Moved to"); log.Info("Idea list has been moved to wish list."); }
public void ShopingListAddIdeaList() { homePage = new HomePage(chromeDriver); homePage.GoToMainPage(); fillEmailPage = homePage.GoToFillEmailPage(); fillPasswordAndLogin = fillEmailPage.FillEmailAndContinue(LoginData[0]); fillPasswordAndLogin.FillPasswordAndLogin(LoginData[1]); yourListPage = new YourListPage(chromeDriver); yourListPage.GoToMyList(); int[] ideaListCounts = yourListPage.ShopingListAddIdeaList("iPhone 8"); Assert.Less(ideaListCounts[0], ideaListCounts[1]); log.Info("New Idea list added."); }